From 505c33615b6ecab4fe172a49905cb3fce6534a5d Mon Sep 17 00:00:00 2001 From: El RIDO Date: Sun, 11 Feb 2024 15:16:26 +0100 Subject: [PATCH] re-add tzdata, removed from pelican dependencies unfortunately this is not a windows-only dependency, but required if using timezones as we do, otherwise results in errors: > No time zone found with key Europe/Zurich caused by: https://gitlab.alpinelinux.org/alpine/aports/-/merge_requests/58013 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2a4ccc4..015cadf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM alpine:3.19 WORKDIR /srv RUN echo "@testing https://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories -RUN apk add --no-cache py3-pelican@testing make +RUN apk add --no-cache py3-pelican@testing make tzdata COPY . /srv/ RUN make publish