1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-03-03 14:52:36 +02:00

23 lines
357 B
Docker
Raw Normal View History

# syntax=docker/dockerfile-upstream:1.4.3
# cert dumper image
FROM ldez/traefik-certs-dumper
2021-11-04 14:22:12 +01:00
ENV TZ Etc/UTC
ENV LANG C.UTF-8
2021-11-04 14:22:12 +01:00
ARG VERSION
LABEL version=$VERSION
RUN set -euxo pipefail \
; apk add --no-cache bash inotify-tools tzdata util-linux
COPY run.sh /
RUN echo $VERSION >/version
2018-12-30 16:55:18 +02:00
VOLUME ["/traefik"]
VOLUME ["/output"]
ENTRYPOINT ["/run.sh"]