Skip to content

Commit

Permalink
updated docker file to support node 18
Browse files Browse the repository at this point in the history
  • Loading branch information
Raviramnani1 committed Jul 30, 2024
1 parent e600ffc commit d217ce7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions buy-now/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 d217ce7

Please sign in to comment.