Skip to content

Commit

Permalink
update node to 18.18.1
Browse files Browse the repository at this point in the history
  • Loading branch information
flyerhzm committed Oct 13, 2023
1 parent f1e67dd commit 62e9d7c
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,12 +1,12 @@
FROM node:18.17.1-alpine as builder
FROM node:18.18.1-alpine as builder
RUN mkdir /app
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm install
COPY . ./
RUN npm run build

FROM node:18.17.1-alpine
FROM node:18.18.1-alpine
WORKDIR /app
COPY --from=builder /app/package*.json ./
COPY --from=builder /app/build ./
Expand Down

0 comments on commit 62e9d7c

Please sign in to comment.