Skip to content

Commit

Permalink
Update Node
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielPower committed Dec 19, 2024
1 parent dedf9a5 commit 5ddbf0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM node:18-alpine as build
FROM node:22-alpine as build
WORKDIR /app
COPY . .
RUN npm install
RUN npm run build

FROM node:18-alpine as deploy
FROM node:22-alpine as deploy
WORKDIR /app
RUN rm -rf ./*
COPY --from=build /app/package.json .
Expand Down

0 comments on commit 5ddbf0b

Please sign in to comment.