feat: add tzdata package in Dockerfile to fix timezone issue (#2857)

Add tzdata to resolve possible time zone errors
This commit is contained in:
无别 2024-04-07 14:27:45 +08:00 committed by GitHub
parent 6161040c67
commit 800f0ed249
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -16,6 +16,7 @@ ARG USER=casdoor
RUN sed -i 's/https/http/' /etc/apk/repositories RUN sed -i 's/https/http/' /etc/apk/repositories
RUN apk add --update sudo RUN apk add --update sudo
RUN apk add tzdata
RUN apk add curl RUN apk add curl
RUN apk add ca-certificates && update-ca-certificates RUN apk add ca-certificates && update-ca-certificates