Skip to content
Snippets Groups Projects
.gitlab-ci.yml 190 B
image: python:3.6

pages:
  stage: build
  script:
  - pip install --no-cache-dir -r dependencies.txt
  - FLASK_APP=app.py flask freeze
  artifacts:
    paths:
    - public
  only:
  - main