.gitlab-ci.yml (346B)
1 variables: 2 3 stages: 4 - container 5 - build 6 7 build-container: 8 stage: container 9 image: docker:dind 10 only: 11 - master 12 script: 13 - docker build -f .ci/Dockerfile -t libextractor-python . 14 15 build-libextractor-python: 16 stage: build 17 image: libextractor-python:latest 18 only: 19 - master 20 script: 21 - pip3 install --no-deps --verbose .