feat: add timezone configuration support to server settings and Docker image
Build / Build and Push (push) Successful in 45s

This commit is contained in:
2026-06-05 19:57:27 +01:00
parent 07aa8e5ffe
commit 8308950637
4 changed files with 15 additions and 2 deletions
+2 -2
View File
@@ -15,9 +15,9 @@ RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o /app/bin/goencode ./cmd/go
# Final stage
FROM debian:bookworm-slim
# Install ffmpeg and ca-certificates
# Install ffmpeg, ca-certificates, and tzdata for timezone support
RUN apt-get update && \
apt-get install -y --no-install-recommends ffmpeg ca-certificates && \
apt-get install -y --no-install-recommends ffmpeg ca-certificates tzdata && \
rm -rf /var/lib/apt/lists/*
WORKDIR /app