fix(frontend): remediate Trivy vulnerabilities in build image

This commit is contained in:
2026-03-07 20:40:51 +00:00
parent 7bcab5afd8
commit da84d171e5
3 changed files with 48 additions and 26 deletions

View File

@@ -18,6 +18,9 @@ LABEL maintainer="Sean Morley" \
# The WORKDIR instruction sets the working directory for everything that will happen next
WORKDIR /app
# Upgrade zlib to include Alpine security fixes
RUN apk upgrade --no-cache zlib
# Install pnpm globally first
RUN npm install -g pnpm
@@ -46,4 +49,4 @@ USER node:node
EXPOSE 3000
# Run startup.sh instead of the default command
CMD ["./startup.sh"]
CMD ["./startup.sh"]