From 9b6e421f4da08aeb0cd206aa1e6104a14c4db846 Mon Sep 17 00:00:00 2001 From: Simao Rodrigues Date: Thu, 20 Jun 2024 17:11:04 +0100 Subject: [PATCH] Match docker config node js versions --- frontend/Dockerfile.prod | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/Dockerfile.prod b/frontend/Dockerfile.prod index 67827268..35ff2bcf 100644 --- a/frontend/Dockerfile.prod +++ b/frontend/Dockerfile.prod @@ -13,7 +13,7 @@ RUN yarn install # RUN npm ci # Rebuild the source code only when needed -FROM node:18.15-bullseye AS builder +FROM node:18.17-bullseye AS builder WORKDIR /app COPY . . COPY --from=deps /app/node_modules ./node_modules @@ -26,7 +26,7 @@ ENV NEXT_TELEMETRY_DISABLED 1 RUN yarn build # Production image, copy all the files and run next -FROM node:18.15-bullseye AS runner +FROM node:18.17-bullseye AS runner WORKDIR /app ENV NODE_ENV production