From 5b3833839e333c612ba29c5960e5767e6b39a8c4 Mon Sep 17 00:00:00 2001 From: 3kami3 Date: Wed, 26 Jul 2023 00:32:49 +0900 Subject: [PATCH] Fixed missing zoneinfo (#23759) (#23760) * added tzdata * set noninteractive installation Co-authored-by: Mattermost Build --- server/build/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/build/Dockerfile b/server/build/Dockerfile index e700c4e74c..e4fafc2d00 100644 --- a/server/build/Dockerfile +++ b/server/build/Dockerfile @@ -12,7 +12,7 @@ ARG MM_PACKAGE="https://releases.mattermost.com/8.0.0/mattermost-8.0.0-linux-amd # # Install needed packages and indirect dependencies RUN apt-get update \ - && apt-get install --no-install-recommends -y \ + && DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \ ca-certificates \ curl \ mime-support \ @@ -20,6 +20,7 @@ RUN apt-get update \ wv \ poppler-utils \ tidy \ + tzdata \ && rm -rf /var/lib/apt/lists/* # Set mattermost group/user and download Mattermost