From 0af78e72d95ec99c9c36eedf5eed093be0589112 Mon Sep 17 00:00:00 2001 From: Martin Berka Date: Mon, 24 Feb 2025 11:57:17 +0100 Subject: [PATCH] =?UTF-8?q?Nastaven=C3=AD=20=C4=8Dasov=C3=A9=20z=C3=B3ny?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 7 +++++-- Dockerfile-Woodpecker | 7 +++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1b31204..7d4a0ca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -46,8 +46,11 @@ RUN yarn build # Runner FROM node:18-alpine3.18 -ENV LANG cs_CZ.UTF-8 -ENV NODE_ENV production + +RUN apk add --no-cache tzdata +ENV TZ=Europe/Prague \ + LANG=cs_CZ.UTF-8 \ + NODE_ENV=production WORKDIR /app diff --git a/Dockerfile-Woodpecker b/Dockerfile-Woodpecker index ede44bc..b638be0 100644 --- a/Dockerfile-Woodpecker +++ b/Dockerfile-Woodpecker @@ -1,6 +1,9 @@ FROM node:18-alpine3.18 -ENV LANG=cs_CZ.UTF-8 -ENV NODE_ENV=production + +RUN apk add --no-cache tzdata +ENV TZ=Europe/Prague \ + LANG=cs_CZ.UTF-8 \ + NODE_ENV=production WORKDIR /app