Update dovecot/Dockerfile, dovecot/Makefile, .gitlab-ci.yml files

This commit is contained in:
2021-05-15 20:01:30 +00:00
parent 46b1a36bae
commit 8c6ed3d881
3 changed files with 58 additions and 0 deletions

17
dovecot/Makefile Normal file
View File

@ -0,0 +1,17 @@
NAMESPACE=alemairebe
VERSION=2.3.13
IMAGE=dovecot
push:
docker buildx build --platform linux/amd64,linux/arm64,linux/arm --push \
--cache-from=type=registry,ref=${NAMESPACE}/buildx:${IMAGE} \
--cache-to=type=registry,ref=${NAMESPACE}/buildx:${IMAGE} \
--tag ${CI_REGISTRY_IMAGE}/${IMAGE}:$(VERSION) \
--tag ${NAMESPACE}/${IMAGE}:$(VERSION) \
-f Dockerfile .
dev:
docker buildx build --platform linux/amd64,linux/arm64,linux/arm \
--output type=tar,dest=synapse.tar \
--tag ${NAMESPACE}/${IMAGE}:$(VERSION) \
-f Dockerfile ${IMAGE}-${VERSION}