We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b7a2e0 commit 0967dacCopy full SHA for 0967dac
1 file changed
workers/temporal/vulnerability_enrichment_worker/Dockerfile
@@ -15,13 +15,15 @@ COPY ./workers/temporal/vulnerability_enrichment_worker ./workers/temporal/vulne
15
16
RUN pnpm i --frozen-lockfile
17
18
-FROM node:24-alpine AS runner
+FROM node:20-bookworm-slim AS runner
19
20
WORKDIR /usr/insights/app
21
RUN npm install -g corepack@latest && \
22
corepack enable pnpm && \
23
corepack prepare pnpm@10.12.4 --activate && \
24
- apk add --no-cache ca-certificates
+ apt update && \
25
+ apt install -y ca-certificates --no-install-recommends && \
26
+ rm -rf /var/lib/apt/lists/*
27
28
COPY --from=builder /usr/insights/app/node_modules ./node_modules
29
COPY --from=builder /usr/insights/app/submodules ./submodules
0 commit comments