From 1d6809193b1e02d87fdcca3f5a896ee8bd411947 Mon Sep 17 00:00:00 2001 From: DjVinnii Date: Tue, 2 Nov 2021 11:18:21 +0100 Subject: [PATCH] Add tzdata to core --- core/admin/Dockerfile | 2 +- core/dovecot/Dockerfile | 2 +- core/nginx/Dockerfile | 2 +- core/postfix/Dockerfile | 2 +- core/rspamd/Dockerfile | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/core/admin/Dockerfile b/core/admin/Dockerfile index a4f28481..87676eb5 100644 --- a/core/admin/Dockerfile +++ b/core/admin/Dockerfile @@ -25,7 +25,7 @@ COPY --from=balenalib/rpi-alpine:3.14 /usr/bin/qemu-arm-static /usr/bin/qemu-arm # python3 shared with most images RUN set -eu \ - && apk add --no-cache python3 py3-pip git bash \ + && apk add --no-cache python3 py3-pip git bash tzdata \ && pip3 install --upgrade pip RUN mkdir -p /app diff --git a/core/dovecot/Dockerfile b/core/dovecot/Dockerfile index 49fcb866..da376d81 100644 --- a/core/dovecot/Dockerfile +++ b/core/dovecot/Dockerfile @@ -13,7 +13,7 @@ RUN git clone https://github.com/grosjo/fts-xapian.git \ FROM $DISTRO # python3 shared with most images RUN apk add --no-cache \ - python3 py3-pip git bash py3-multidict py3-yarl \ + python3 py3-pip git bash py3-multidict py3-yarl tzdata \ && pip3 install --upgrade pip # Shared layer between nginx, dovecot, postfix, postgresql, rspamd, unbound, rainloop, roundcube diff --git a/core/nginx/Dockerfile b/core/nginx/Dockerfile index b7e5e22e..6043cd8d 100644 --- a/core/nginx/Dockerfile +++ b/core/nginx/Dockerfile @@ -9,7 +9,7 @@ RUN apk add --no-cache \ RUN pip3 install socrate==0.2.0 # Image specific layers under this line -RUN apk add --no-cache certbot nginx nginx-mod-mail openssl curl \ +RUN apk add --no-cache certbot nginx nginx-mod-mail openssl curl tzdata \ && pip3 install watchdog COPY conf /conf diff --git a/core/postfix/Dockerfile b/core/postfix/Dockerfile index bdf45e35..e1e1d6f9 100644 --- a/core/postfix/Dockerfile +++ b/core/postfix/Dockerfile @@ -2,7 +2,7 @@ ARG DISTRO=alpine:3.14.2 FROM $DISTRO # python3 shared with most images RUN apk add --no-cache \ - python3 py3-pip git bash py3-multidict py3-yarl \ + python3 py3-pip git bash py3-multidict py3-yarl tzdata \ && pip3 install --upgrade pip # Shared layer between nginx, dovecot, postfix, postgresql, rspamd, unbound, rainloop, roundcube diff --git a/core/rspamd/Dockerfile b/core/rspamd/Dockerfile index 0b3b94f7..296949a2 100644 --- a/core/rspamd/Dockerfile +++ b/core/rspamd/Dockerfile @@ -2,7 +2,7 @@ ARG DISTRO=alpine:3.14.2 FROM $DISTRO # python3 shared with most images RUN apk add --no-cache \ - python3 py3-pip git bash py3-multidict \ + python3 py3-pip git bash py3-multidict tzdata \ && pip3 install --upgrade pip # Shared layer between nginx, dovecot, postfix, postgresql, rspamd, unbound, rainloop, roundcube