We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83e5da2 commit f6aa39aCopy full SHA for f6aa39a
1 file changed
Dockerfile
@@ -1,5 +1,5 @@
1
# Install dependencies only when needed
2
-FROM node:16-alpine AS builder
+FROM node:18-alpine AS builder
3
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
4
RUN apk add --no-cache libc6-compat
5
WORKDIR /app
@@ -21,7 +21,7 @@ RUN yarn build
21
# RUN npm run build
22
23
# Production image, copy all the files and run next
24
-FROM node:16-alpine AS runner
+FROM node:18-alpine AS runner
25
26
27
ENV NODE_ENV production
0 commit comments