From 5f143286c37c71a7f8ef7e6ceadf16b93c496d33 Mon Sep 17 00:00:00 2001 From: Frederik <5511687+fightforlife@users.noreply.github.com> Date: Fri, 15 Jan 2021 21:06:02 +0100 Subject: [PATCH] add tzdata package tzdata package is needed to set the timezone inside the container using the environment variable, like `TZ=Europe/Berlin` --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3fbd3f5..a4c6e1c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # Snapraid 1.4 FROM alpine:latest -RUN apk --update add python3 git smartmontools && \ +RUN apk --update add python3 git smartmontools tzdata && \ apk add snapraid --update-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing --allow-untrusted && \ git clone https://github.com/Chronial/snapraid-runner.git /app/snapraid-runner && \ chmod +x /app/snapraid-runner/snapraid-runner.py && \