diff options
| author | 2023-08-01 18:09:46 +0800 | |
|---|---|---|
| committer | 2023-08-01 12:09:46 +0200 | |
| commit | 96dd0e75f20a1f1f8203f3438ae7a82d260a0ef8 (patch) | |
| tree | 0d3ad2430d1808537d297c861ec1eb63fdee3fa7 /Dockerfile | |
| parent | [feature] Hashtag federation (in/out), hashtag client API endpoints (#2032) (diff) | |
| download | gotosocial-96dd0e75f20a1f1f8203f3438ae7a82d260a0ef8.tar.xz | |
[feature] Configurable timezone in containers (#2046)
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile index c7bcdfcb6..6b0c3b4cd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,6 +21,8 @@ RUN yarn install --cwd web/source && \ # stage 3: build the executor container FROM --platform=${TARGETPLATFORM} alpine:3.17.2 as executor +RUN apk add --no-cache tzdata +ENV TZ="UTC" # switch to non-root user:group for GtS USER 1000:1000 |
