From 9eb050f8e383f87524c95fa376b081f37cfa276c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Zaj=C4=85c?= Date: Mon, 30 Oct 2023 21:27:07 +0100 Subject: [PATCH] Set timezone to Europe/Warsaw --- Dockerfile | 1 + compose.yml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2383155..4a7c062 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,7 @@ FROM base COPY --from=build /app /app RUN addgroup app && \ adduser app --home /app --shell /bin/bash --ingroup app --disabled-password && \ + apk add --no-cache alpine-conf && setup-timezone -z Europe/Warsaw && \ mkdir -p /app/data && \ chown -R app:app /app VOLUME /app/data diff --git a/compose.yml b/compose.yml index bcfef9d..5f12523 100644 --- a/compose.yml +++ b/compose.yml @@ -1,7 +1,7 @@ version: '3' services: bot: - image: ghcr.io/quintasan/przypominacz-bot:v1.0.3 + image: ghcr.io/quintasan/przypominacz-bot:v1.0.5 build: context: . dockerfile: Dockerfile