postal/.gitlab-ci.yml

25 lines
417 B
YAML
Raw Normal View History

2020-04-13 05:51:32 +02:00
#variables:
2020-04-13 05:37:04 +02:00
before_script:
- docker info
2020-04-13 05:54:14 +02:00
stages:
- docker-build
2020-04-13 05:57:55 +02:00
- cleanup
2020-04-13 05:54:14 +02:00
2020-04-13 05:51:32 +02:00
build-docker-alpine:
stage: docker-build
2020-04-13 05:37:04 +02:00
script:
- cd alpine
2020-04-13 05:51:32 +02:00
- docker build --network=host -t catdeployed/postal:alpine .
build-docker-ubuntu:
stage: docker-build
script:
- cd ubuntu
- docker build --network=host -t catdeployed/postal:ubuntu .
2020-04-13 05:57:55 +02:00
cleanup
stage: cleanup
script:
- docker system prune -af