Files
devopsexam/.gitlab-ci.yml
2026-05-06 23:40:10 +02:00

13 lines
200 B
YAML

stages:
- run
run_flask_app:
stage: run
image: python:3.11
before_script:
- pip install -r requirements.txt
script:
- python app.py &
- sleep 5
- curl http://127.0.0.1:5000