From dc58d75978881578f8fd05ea07a560cc65fc26c3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 24 Jul 2024 17:16:24 +0000 Subject: [PATCH] chore(deps): update node.js to v20.16.0 --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index b5d86f8..9a14dca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Install dependencies only when needed -FROM node:20.13-alpine AS deps +FROM node:20.16-alpine AS deps RUN apk add --no-cache libc6-compat WORKDIR /app COPY package.json yarn.lock ./ @@ -7,7 +7,7 @@ RUN yarn install RUN yarn add sharp --ignore-engines # Rebuild the source code only when needed -FROM node:20.13-alpine AS builder +FROM node:20.16-alpine AS builder WORKDIR /app @@ -18,7 +18,7 @@ COPY . . RUN yarn build # Production image, copy all the files and run next -FROM node:20.13-alpine AS runner +FROM node:20.16-alpine AS runner WORKDIR /app ENV NODE_ENV production