Skip to content
Snippets Groups Projects
Commit f97a1611 authored by RENAUX Anna's avatar RENAUX Anna
Browse files

add the pipeline file

parent df4081b7
No related branches found
No related tags found
No related merge requests found
Pipeline #16819 failed
stages:
- build
- test
- deploy
variables:
DOCKER_IMAGE_TAG: eval.py
before_script:
- apt-get update -qy
- apt-get install -y python3 python3-pip
build:
stage: build
test:
stage: test
script:
- python3 -m unittest discover
deploy:
stage: deploy
script:
- docker build -t eval.py:$DOCKER_IMAGE_TAG .
- docker run -p 9090:9090 eval.py:$DOCKER_IMAGE_TAG
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment