stages: - run - build 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 build_docker_image: stage: build image: docker:24 services: - docker:24-dind variables: DOCKER_TLS_CERTDIR: "/certs" script: - docker build -t flask-app .