From 71bd74833b232b5ab704b0c35cc9ae3f71cb41d7 Mon Sep 17 00:00:00 2001 From: Kasper Juul Hermansen Date: Thu, 20 Apr 2023 21:19:01 +0000 Subject: [PATCH] Update Node.js to v20 --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index a2a0b91..bca6d6b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # 1. Install dependencies only when needed -FROM node:19-alpine AS deps +FROM node:20-alpine AS deps # Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed. RUN apk add --no-cache libc6-compat @@ -8,7 +8,7 @@ COPY package.json yarn.lock ./ RUN yarn install --frozen-lockfile # 2. Rebuild the source code only when needed -FROM node:19-alpine AS builder +FROM node:20-alpine AS builder WORKDIR /app COPY --from=deps /app/node_modules ./node_modules COPY . . @@ -16,7 +16,7 @@ COPY . . RUN yarn build # 3. Production image, copy all the files and run next -FROM node:19-alpine AS runner +FROM node:20-alpine AS runner WORKDIR /app ENV NODE_ENV=production