Forked from
Michael Bücker / jupyterhub
18 commits behind, 1 commit ahead of the upstream repository.
-
Michael Bücker authoredMichael Bücker authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
.gitlab-ci.yml 386 B
variables:
DOCKER_TLS_CERTDIR: ""
docker-build-master:
# 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
script:
- cp $ENV_FILE .env
- docker build --pull -t "$CI_REGISTRY_IMAGE":prod .
- docker push "$CI_REGISTRY_IMAGE":prod