diff options
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 |