aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 77d54d6..102353b 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -3,7 +3,7 @@ FROM --platform=$BUILDPLATFORM golang:1.25-alpine AS builder
ARG TARGETPLATFORM
ARG BUILDPLATFORM
-RUN apk add --no-cache git
+RUN apk add --no-cache tzdata git
WORKDIR /app
@@ -23,6 +23,7 @@ LABEL maintainer="neonxp" \
description="qChat - quick ssh chat" \
version="1.0"
+COPY --from=builder /usr/share/zoneinfo /usr/share/zoneinfo
COPY --from=builder /app /app
ENV TZ=Europe/Moscow