Skip to content

Commit

Permalink
Merge pull request #2479 from Pylons-tech/update-docker-node
Browse files Browse the repository at this point in the history
updated docker file to support node 18
  • Loading branch information
MikeSofaer authored Aug 2, 2024
2 parents e23082c + 39e0345 commit 477d27d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions buy-now/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Install dependencies only when needed
FROM node:16-alpine AS deps
FROM node:18-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
WORKDIR /app
Expand All @@ -10,7 +10,7 @@ RUN npm i --legacy-peer-deps


# Rebuild the source code only when needed
FROM node:16-alpine AS builder
FROM node:18-alpine AS builder
ENV GENERATE_SOURCEMAP false

WORKDIR /app
Expand All @@ -34,7 +34,7 @@ RUN npm run build
# RUN npm run build

# Production image, copy all the files and run next
FROM node:16-alpine AS runner
FROM node:18-alpine AS runner
WORKDIR /app

ENV NODE_ENV production
Expand Down

0 comments on commit 477d27d

Please sign in to comment.