Skip to content
Snippets Groups Projects
Commit 62a3585d authored by Martin Reinecke's avatar Martin Reinecke
Browse files

Merge branch 'daily_docker_builds' into 'NIFTy_4'

Add Docker builds without caching. Needs to be activated in Gitlab

See merge request ift/NIFTy!253
parents 0884f5c2 2995f482
Branches
Tags
1 merge request!253Add Docker builds without caching. Needs to be activated in Gitlab
Pipeline #
...@@ -8,7 +8,19 @@ stages: ...@@ -8,7 +8,19 @@ stages:
- test - test
- release - release
build_docker: build_docker_from_scratch:
only:
- schedules
image: docker:stable
stage: build_docker
script:
- docker login -u gitlab-ci-token -p $CI_BUILD_TOKEN gitlab-registry.mpcdf.mpg.de
- docker build -t $CONTAINER_TEST_IMAGE --no-cache .
- docker push $CONTAINER_TEST_IMAGE
build_docker_from_cache:
except:
- schedules
image: docker:stable image: docker:stable
stage: build_docker stage: build_docker
script: script:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment