From a2c8536d3748d962eee8bcb82a51c6813a3dc47f Mon Sep 17 00:00:00 2001 From: He Weiwei Date: Wed, 21 Aug 2019 14:40:09 +0000 Subject: [PATCH] fix(build): install tzdata pkg for core and jobservice images Closes #8314 Signed-off-by: He Weiwei --- make/photon/core/Dockerfile | 2 +- make/photon/jobservice/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/make/photon/core/Dockerfile b/make/photon/core/Dockerfile index 7eaa4191c..d585a98ee 100644 --- a/make/photon/core/Dockerfile +++ b/make/photon/core/Dockerfile @@ -1,6 +1,6 @@ FROM photon:2.0 -RUN tdnf install sudo -y >> /dev/null\ +RUN tdnf install sudo tzdata -y >> /dev/null \ && tdnf clean all \ && groupadd -r -g 10000 harbor && useradd --no-log-init -r -g 10000 -u 10000 harbor \ && mkdir /harbor/ diff --git a/make/photon/jobservice/Dockerfile b/make/photon/jobservice/Dockerfile index eddb8e65b..1ee9277dd 100644 --- a/make/photon/jobservice/Dockerfile +++ b/make/photon/jobservice/Dockerfile @@ -1,6 +1,6 @@ FROM photon:2.0 -RUN tdnf install sudo -y >> /dev/null\ +RUN tdnf install sudo tzdata -y >> /dev/null \ && tdnf clean all \ && groupadd -r -g 10000 harbor && useradd --no-log-init -r -g 10000 -u 10000 harbor