From 69be0f8246c1803cd551321b386a86452c5455c2 Mon Sep 17 00:00:00 2001 From: Ismar Slomic Date: Sat, 9 Mar 2024 00:04:53 +0100 Subject: [PATCH] fix(docker): install tzdata in docker image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 401967e..6c03357 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ ARG GIT_SHA ENV NODE_ENV production # Install timezone database to allow setting timezone through TZ environment variable -RUN apk add --no-cache tzdata +RUN apt install tzdata LABEL org.opencontainers.image.created=$BUILD_DATE \ org.opencontainers.image.authors="Steven Mayotte" \