Skip to content
Snippets Groups Projects
Commit 9b9682e4 authored by Kevin Dietz's avatar Kevin Dietz
Browse files

add container

parent 9a2e0acd
No related branches found
No related tags found
Loading
Pipeline #1419048753 failed
......@@ -4,7 +4,7 @@
# ======
variables:
CONTAINER_IMAGE: "$CI_REGISTRY_IMAGE/$[[ inputs.DS_CONTAINER_IMAGE ]]"
CONTAINER_IMAGE: "$CI_REGISTRY_IMAGE/datascienceimage"
IMAGE_TAG: "$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME"
DOCKER_HOST: tcp://docker:2375
MOUNT_POINT: "/builds/$CI_PROJECT_PATH/mnt"
......@@ -17,7 +17,7 @@ stages:
- build
build-cuda:
build-mr-image:
tags: [ saas-linux-large-amd64 ]
stage: build
services:
......@@ -35,3 +35,17 @@ build-cuda:
- Pipfile
- Pipfile.lock
allow_failure: false
build-latest:
stage: build
services:
- docker:20.10.16-dind
image:
name: docker:20.10.16
script:
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
- docker build -t $CONTAINER_IMAGE:latest .
- docker push $CONTAINER_IMAGE:latest
rules:
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
allow_failure: false
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment