From 401e41b3d35814077f4f15a02ac756a746d9fad5 Mon Sep 17 00:00:00 2001 From: OCram85 Date: Fri, 14 Jul 2023 08:34:09 +0200 Subject: [PATCH] adds timezone setup support --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 01acd65..a5fe271 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,11 +29,12 @@ ENV LOGLEVEL "Info" ENV MAXCLIENTS "600" ENV FILTER_FILE "/app/filter" +ENV TZ "Europe/Berlin" # get existing packages # curl for healthchecks and debugging RUN apk add --no-cache \ - tinyproxy curl + tinyproxy curl tzdata COPY entrypoint.sh /app/entrypoint.sh -- 2.45.2