Skip to content

Commit 65ba097

Browse files
Bump node from 16-alpine to 18-alpine in /wrongsecrets-balancer
Bumps node from 16-alpine to 18-alpine. --- updated-dependencies: - dependency-name: node dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 777c1e6 commit 65ba097

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

wrongsecrets-balancer/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
FROM node:16-alpine as build
1+
FROM node:18-alpine as build
22
RUN mkdir -p /home/app
33
WORKDIR /home/app
44
COPY package.json package-lock.json ./
55
RUN npm ci --production
66

7-
FROM node:16-alpine as ui
7+
FROM node:18-alpine as ui
88
RUN mkdir -p /home/app
99
WORKDIR /home/app
1010
COPY ui/package.json ui/package-lock.json ./
1111
RUN npm ci
1212
COPY ui/ ./
1313
RUN npm run build
1414

15-
FROM node:16-alpine
15+
FROM node:18-alpine
1616
ARG NODE_ENV
1717
RUN addgroup --system --gid 1001 app && adduser app --system --uid 1001 --ingroup app
1818
WORKDIR /home/app/

0 commit comments

Comments
 (0)