1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-12-03 22:49:11 +02:00

Implement versioning for CI/CD workflow (see #1182).

This commit is contained in:
Dimitri Huisman
2021-11-17 20:00:04 +00:00
parent f2fac2fd1b
commit 56dd70cf4a
20 changed files with 482 additions and 89 deletions

View File

@@ -1,8 +1,12 @@
ARG DISTRO=alpine:3.14.2
FROM $DISTRO
ARG VERSION
ENV TZ Etc/UTC
LABEL version=$VERSION
RUN echo $VERSION >> /version
# python3 shared with most images
RUN apk add --no-cache \
python3 py3-pip bash py3-multidict tzdata \