From 2c440fb895ce9c1d4106a0935d0212e7188ccb07 Mon Sep 17 00:00:00 2001 From: Liam Date: Fri, 13 Jan 2023 19:04:08 +0000 Subject: [PATCH] bump to node 19 --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 38945de..f79ce11 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Install dependencies only when needed -FROM node:18-alpine AS deps +FROM node:19-alpine AS deps # Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed. RUN apk add libc6-compat WORKDIR /app @@ -20,7 +20,7 @@ RUN npm i # fi # Rebuild the source code only when needed -FROM node:18-alpine AS builder +FROM node:19-alpine AS builder WORKDIR /app COPY --from=deps /app/node_modules ./node_modules COPY . . @@ -34,7 +34,7 @@ ENV NEXT_TELEMETRY_DISABLED 1 RUN yarn build # Production image, copy all the files and run next -FROM node:18-alpine AS runner +FROM node:19-alpine AS runner WORKDIR /app ENV NODE_ENV production