From 318cd257a71ef3d5d0024ae42895b836c04ed353 Mon Sep 17 00:00:00 2001 From: giuaig <13609224+giuaig@users.noreply.github.com> Date: Sun, 16 Nov 2025 19:09:05 +0100 Subject: [PATCH] Add support to TZ environment variable in Docker image Signed-off-by: giuaig <13609224+giuaig@users.noreply.github.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2cf33ec..d4228bf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ FROM alpine:3.22 AS runtime LABEL org.opencontainers.image.authors="https://github.com/databacker" # set us up to run as non-root user -RUN apk add --no-cache bash && \ +RUN apk add --no-cache bash tzdata && \ addgroup -g 1005 appuser && \ adduser -u 1005 -G appuser -D appuser