Skip to content

Commit 60a6055

Browse files
committed
Make sure timezone is amsterdam.
1 parent 181701f commit 60a6055

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docker/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
FROM alpine:3.18
22

33
RUN apk add --no-cache --upgrade --virtual .build-deps gcc build-base python3-dev cargo libffi-dev openssl-dev && \
4-
apk add --no-cache git python3 py3-pip gcc && \
4+
apk add --no-cache git python3 py3-pip gcc tzdata && \
55
pip3 install cffi && \
66
apk del .build-deps && \
7+
ln -s /usr/share/zoneinfo/Europe/Amsterdam /etc/localtime && \
78
mkdir /work
8-
9+
910
ADD "." /checkout
1011
RUN pip3 install --upgrade '/checkout' && \
1112
cp /checkout/docker/entrypoint.sh / && \

0 commit comments

Comments
 (0)