Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,7 @@ RUN NODE_OPTIONS="--max-old-space-size=4096" npm set progress=false
RUN NODE_OPTIONS="--max-old-space-size=4096" npm ci --legacy-peer-deps
RUN NODE_OPTIONS="--openssl-legacy-provider" npm run build --silent

FROM nginx:1.29.8-alpine3.23-slim AS fnl_base_image

# zlib: CVE-2026-22184, openssl: CVE-2026-2673, CVE-2026-31790
RUN apk update && apk add --no-cache --upgrade zlib=1.3.2-r0 openssl
FROM nginx:1.30.1-alpine3.23-slim AS fnl_base_image

COPY --from=build /usr/src/app/dist /usr/share/nginx/html
COPY --from=build /usr/src/app/config/inject.template.js /usr/share/nginx/html/inject.template.js
Expand Down
Loading