From 25b080cd72446c8c3371b9e085124dfb494c581f Mon Sep 17 00:00:00 2001 From: Martin Berka Date: Mon, 12 Jun 2023 12:19:37 +0200 Subject: [PATCH] =?UTF-8?q?Uzam=C4=8Den=C3=AD=20Docker=20base=20image?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/Dockerfile | 4 ++-- server/Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/client/Dockerfile b/client/Dockerfile index 35ff2cd..2adda06 100644 --- a/client/Dockerfile +++ b/client/Dockerfile @@ -1,4 +1,4 @@ -FROM node:alpine AS builder +FROM node:18-alpine3.18 AS builder COPY package.json . COPY yarn.lock . @@ -12,7 +12,7 @@ COPY ./public ./public RUN yarn build -FROM node:alpine +FROM node:18-alpine3.18 ENV NODE_ENV production WORKDIR /app diff --git a/server/Dockerfile b/server/Dockerfile index fddb179..c9594bd 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -1,4 +1,4 @@ -FROM node:alpine +FROM node:18-alpine3.18 ENV LANG cs_CZ.UTF-8