Skip to content

Commit

Permalink
fix: pin timezone to Europe/Zurich (#584)
Browse files Browse the repository at this point in the history
This is a workaround for podman not currently supporting the `--tz` flag in kube manifests
  • Loading branch information
hairmare authored Jan 7, 2024
1 parent 4079ced commit 932d429
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 932d429

Please sign in to comment.