Mentions légales du service

Skip to content
Snippets Groups Projects
Commit e10d53f8 authored by MOLLI Martin's avatar MOLLI Martin
Browse files

Update .gitlab-ci.yml file

parent 978276a2
No related branches found
No related tags found
No related merge requests found
...@@ -15,10 +15,10 @@ build-job: # This job runs in the build stage, which runs first. ...@@ -15,10 +15,10 @@ build-job: # This job runs in the build stage, which runs first.
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
- echo "Building docker images" - echo "Building docker images"
- docker build -t camera:latest ./services/camera - docker build --pull -t $CI_REGISTRY_IMAGE/camera:latest ./services/camera
- docker build -t motion_detector:latest ./services/motion_detector - docker build --pull -t $CI_REGISTRY_IMAGE/motion_detector:latest ./services/motion_detector
- docker build -t object_recognizer:latest ./services/object_recognizer - docker build --pull -t $CI_REGISTRY_IMAGE/object_recognizer:latest ./services/object_recognizer
- docker push registry.gitlab.inria.fr/stack-research-group/software/edge-to-cloud-video-processing/camera:latest - docker push $CI_REGISTRY_IMAGE/camera:latest
- docker push registry.gitlab.inria.fr/stack-research-group/software/edge-to-cloud-video-processing/motion_detector:latest - docker push $CI_REGISTRY_IMAGE/motion_detector:latest
- docker push registry.gitlab.inria.fr/stack-research-group/software/edge-to-cloud-video-processing/object_recognizer:latest - docker push $CI_REGISTRY_IMAGE/object_recognizer:latest
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