Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
Notebooks Images
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ATLAS-open-data-IaC-QT-2021
Notebooks Images
Commits
4daf675e
Commit
4daf675e
authored
3 years ago
by
Soap2G
Browse files
Options
Downloads
Patches
Plain Diff
Create dockerfile
parents
Branches
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#2979743
failed
3 years ago
Stage: build
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+38
-0
38 additions, 0 deletions
.gitlab-ci.yml
Dockerfile
+31
-0
31 additions, 0 deletions
Dockerfile
with
69 additions
and
0 deletions
.gitlab-ci.yml
0 → 100644
+
38
−
0
View file @
4daf675e
# This file is a template, and might need editing before it works on your project.
# To contribute improvements to CI/CD templates, please follow the Development guide at:
# https://docs.gitlab.com/ee/development/cicd/templates.html
# This specific template is located at:
# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Docker.gitlab-ci.yml
# Build a Docker image with CI/CD and push to the GitLab registry.
# Docker-in-Docker documentation: https://docs.gitlab.com/ee/ci/docker/using_docker_build.html
#
# This template uses one generic job with conditional builds
# for the default branch and all other (MR) branches.
docker-build
:
# Use the official docker image.
image
:
docker:latest
stage
:
build
services
:
-
docker:dind
before_script
:
-
docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
# Default branch leaves tag empty (= latest tag)
# All other branches are tagged with the escaped branch name (commit ref slug)
script
:
-
|
if [[ "$CI_COMMIT_BRANCH" == "$CI_DEFAULT_BRANCH" ]]; then
tag=""
echo "Running on default branch '$CI_DEFAULT_BRANCH': tag = 'latest'"
else
tag=":$CI_COMMIT_REF_SLUG"
echo "Running on branch '$CI_COMMIT_BRANCH': tag = $tag"
fi
-
docker build --pull -t "$CI_REGISTRY_IMAGE${tag}" .
-
docker push "$CI_REGISTRY_IMAGE${tag}"
# Run this job in a branch where a Dockerfile exists
rules
:
-
if
:
$CI_COMMIT_BRANCH
exists
:
-
Dockerfile
This diff is collapsed.
Click to expand it.
Dockerfile
0 → 100644
+
31
−
0
View file @
4daf675e
FROM
jupyter/scipy-notebook:latest
WORKDIR
/
ENV
DEBIAN_FRONTEND=noninteractive
USER
root
#install the prerequisites (option always yes activated)
RUN
apt-get update
\
&&
apt-get upgrade
-y
\
&&
apt-get
install
-y
python3 python3-dev git curl python3-pip
\
&& apt-get --yes install \
dpkg-dev \
cmake \
g++ \
gcc \
binutils\
libx11-dev\
libxpm-dev\
libxft-dev\
libxext-dev\
libssl-dev\
nano
# ==========================
# Installing ROOT
# ==========================
RUN
conda
install
root
-c
conda-forge
WORKDIR
/home/jovyan/work/
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment