From 932d4294182a99fd405a2c017e5a05e92ff5f6fe Mon Sep 17 00:00:00 2001 From: Lucas Bickel <116588+hairmare@users.noreply.github.com> Date: Sun, 7 Jan 2024 15:29:02 +1000 Subject: [PATCH] fix: pin timezone to Europe/Zurich (#584) This is a workaround for podman not currently supporting the `--tz` flag in kube manifests --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3978f281..bdd9e4fc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,9 @@ RUN microdnf install -y \ python3.11-pip \ python3.11-setuptools \ && microdnf clean all \ - && rm -rf /tmp/dist/ + && rm -rf /tmp/dist/ \ + && rm -rf /etc/localtime \ + && ln -s ../usr/share/zoneinfo/Europe/Zurich /etc/localtime # make requests use os ca certs that contain the RaBe root CA ENV REQUESTS_CA_BUNDLE=/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem