dockerFullLatexEnvironment/.gitlab-ci.yml

23 lines
334 B
YAML

stages:
- build
- upload
- cleanup
build:
stage: build
script:
- cd static
- docker build --no-cache -t luki42/latex-full:latest .
upload:
stage: upload
needs: ["build"]
script:
- docker push luki42/latex-full:latest
cleanup:
stage: cleanup
needs: ["upload"]
script:
- docker system prune -a -f