docker: add tzdata package, to support TZ env variable

This commit is contained in:
Igor Rzegocki
2022-11-01 12:57:49 +01:00
committed by GitHub
parent e81c87f288
commit e3b1810229
4 changed files with 6 additions and 4 deletions

View File

@@ -58,7 +58,7 @@ ENV UID=1000
ENV GID=1000
ENV USER=lldap
RUN apt update && \
apt install -y --no-install-recommends tini openssl ca-certificates gosu && \
apt install -y --no-install-recommends tini openssl ca-certificates gosu tzdata && \
apt clean && \
rm -rf /var/lib/apt/lists/* && \
groupadd -g $GID $USER && useradd --system -m -g $USER --uid $UID $USER && \