Skip to content

Commit

Permalink
update node engine version
Browse files Browse the repository at this point in the history
  • Loading branch information
sharknoon committed Jun 21, 2024
1 parent 4002ea0 commit b20c369
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,11 +1,11 @@
FROM node:21-alpine as build-stage
FROM node:22-alpine as build-stage
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build

FROM node:21-alpine as production-stage
FROM node:22-alpine as production-stage
RUN mkdir /app
COPY --from=build-stage /app/.output /app
EXPOSE 3000
Expand Down

0 comments on commit b20c369

Please sign in to comment.