mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-14 10:53:30 +02:00
f7677543c6
- Moved run to bottom of Dockerfile to allow using unmodified / cached states. - Simplified bash code in deploy.sh. - Improved the large bash one-liner in CI.yml. It could not handle >9 for 1.x.
16 lines
252 B
Docker
16 lines
252 B
Docker
FROM ldez/traefik-certs-dumper
|
|
ARG VERSION
|
|
|
|
ENV TZ Etc/UTC
|
|
|
|
LABEL version=$VERSION
|
|
|
|
RUN apk --no-cache add inotify-tools util-linux bash tzdata
|
|
|
|
COPY run.sh /
|
|
|
|
VOLUME ["/traefik"]
|
|
VOLUME ["/output"]
|
|
|
|
ENTRYPOINT ["/run.sh"]
|
|
RUN echo $VERSION >> /version |