We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2929254 + e57a9ae commit 9b811a1Copy full SHA for 9b811a1
Dockerfile
@@ -2,7 +2,7 @@
2
# This build created a staging docker image
3
#
4
5
-FROM node:18-alpine AS appbuild
+FROM node:20-alpine AS appbuild
6
WORKDIR /usr/src/csaf-validator-service
7
COPY . .
8
RUN npm ci; \
@@ -12,7 +12,7 @@ RUN npm ci; \
12
# This build takes the production build from staging build
13
14
15
-FROM node:18-alpine
+FROM node:20-alpine
16
WORKDIR /usr/src/app
17
RUN apk add hunspell hunspell-en hunspell-de-de; \
18
ln -s /usr/share/hunspell/en_US.aff /usr/share/hunspell/en.aff; \
0 commit comments