We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ba068e commit 6aaf1cdCopy full SHA for 6aaf1cd
Dockerfile
@@ -1,12 +1,12 @@
1
-FROM node:18 as installer
+FROM node:20 as installer
2
COPY . /juice-shop-ctf
3
WORKDIR /juice-shop-ctf
4
RUN chown -R node .
5
USER node
6
ARG DEV_BUILD=false
7
RUN if [ ${DEV_BUILD} = true ]; then npm i && npm lint && npm test && npm run e2e; else npm install --production --unsafe-perm; fi
8
9
-FROM node:18-alpine
+FROM node:20-alpine
10
ARG BUILD_DATE
11
ARG VCS_REF
12
LABEL maintainer="Bjoern Kimminich <[email protected]>" \
0 commit comments