Skip to content

Commit

Permalink
Update Node.js to v22
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Oct 29, 2024
1 parent 5737eec commit 0566b0b
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 AS BUILD_IMAGE
FROM node:22 AS BUILD_IMAGE

Check warning on line 1 in Dockerfile

View workflow job for this annotation

GitHub Actions / build

Stage names should be lowercase

StageNameCasing: Stage name 'BUILD_IMAGE' should be lowercase More info: https://docs.docker.com/go/dockerfile/rule/stage-name-casing/

Check warning on line 1 in Dockerfile

View workflow job for this annotation

GitHub Actions / build

Stage names should be lowercase

StageNameCasing: Stage name 'BUILD_IMAGE' should be lowercase More info: https://docs.docker.com/go/dockerfile/rule/stage-name-casing/
WORKDIR /build
COPY . .
ARG PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true
RUN npm install
RUN npm run build

FROM node:21-alpine
FROM node:22-alpine
WORKDIR /usr/src/pow-shield
COPY --from=BUILD_IMAGE /build/dist .
COPY --from=BUILD_IMAGE /build/node_modules ./node_modules
Expand Down

0 comments on commit 0566b0b

Please sign in to comment.