1
0
mirror of https://github.com/Mailu/Mailu.git synced 2024-12-14 10:53:30 +02:00
Mailu/optional/traefik-certdumper/Dockerfile

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 15:22:12 +02:00
ENV TZ Etc/UTC
ENV LANG C.UTF-8
2021-11-04 15:22:12 +02: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"]