From 161e91ccf42bf5918ccc7f32595694f933e003bc Mon Sep 17 00:00:00 2001 From: Andrew Low Date: Sun, 22 Sep 2024 22:55:47 -0400 Subject: [PATCH] Add missing tzdata package to docker build (#1296) --- DiscordChatExporter.Cli.dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/DiscordChatExporter.Cli.dockerfile b/DiscordChatExporter.Cli.dockerfile index 9bdfecbdcd..2d3351efbc 100644 --- a/DiscordChatExporter.Cli.dockerfile +++ b/DiscordChatExporter.Cli.dockerfile @@ -45,6 +45,9 @@ ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=false ENV LC_ALL=en_US.UTF-8 ENV LANG=en_US.UTF-8 +# Alpine is missing tzdata, which we need to support timezones +RUN apk add --no-cache tzdata + # Use a non-root user to ensure that the files shared with the host are accessible by the host user # https://github.com/Tyrrrz/DiscordChatExporter/issues/851 # https://github.com/Tyrrrz/DiscordChatExporter/issues/1174