From 9b7e2151eca0af9e70ae5000a7a1987cfab246d1 Mon Sep 17 00:00:00 2001 From: OCram85 Date: Mon, 9 Oct 2023 16:00:04 +0200 Subject: [PATCH] adds timezone support (#14) #### :book: Summary - adds tzdate packaqge - add TZ env #### :bookmark_tabs: Test Plan > :bulb: Select your test plan for the code changes. - [x] CI pipeline tests - [ ] Custom test - [ ] No test plan ##### Details / Justification #### :books: Additional Notes Reviewed-on: https://gitea.ocram85.com/OCram85/swarmproxy/pulls/14 --- 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