Skip to content

Commit 9b811a1

Browse files
authored
Merge pull request #149 from secvisogram/update-dockerfile
update node version in dockerfile
2 parents 2929254 + e57a9ae commit 9b811a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This build created a staging docker image
33
#
44

5-
FROM node:18-alpine AS appbuild
5+
FROM node:20-alpine AS appbuild
66
WORKDIR /usr/src/csaf-validator-service
77
COPY . .
88
RUN npm ci; \
@@ -12,7 +12,7 @@ RUN npm ci; \
1212
# This build takes the production build from staging build
1313
#
1414

15-
FROM node:18-alpine
15+
FROM node:20-alpine
1616
WORKDIR /usr/src/app
1717
RUN apk add hunspell hunspell-en hunspell-de-de; \
1818
ln -s /usr/share/hunspell/en_US.aff /usr/share/hunspell/en.aff; \

0 commit comments

Comments
 (0)