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
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ ENV NODE_ENV production
# Upgrade npm to latest version to address CVE-2026-0775 (npm 11.8.0 vulnerability)
RUN npm install -g npm@latest

# Update tar to 7.5.8 to fix CVE in npm's bundled tar (7.5.4)
# Update tar to 7.5.11 to fix CVE in npm's bundled tar (7.5.4)
RUN mkdir -p /tmp/tar-update && \
cd /tmp/tar-update && \
npm init -y && \
npm install tar@7.5.8 --legacy-peer-deps && \
npm install tar@7.5.11 --legacy-peer-deps && \
rm -rf /usr/local/lib/node_modules/npm/node_modules/tar && \
cp -r node_modules/tar /usr/local/lib/node_modules/npm/node_modules/ && \
rm -rf /tmp/tar-update
Expand All @@ -28,7 +28,7 @@ RUN mkdir -p /tmp/brace-expansion-update && \
RUN mkdir -p /tmp/minimatch-update && \
cd /tmp/minimatch-update && \
npm init -y && \
npm install minimatch@10.2.1 --legacy-peer-deps && \
npm install minimatch@10.2.3 --legacy-peer-deps && \
rm -rf /usr/local/lib/node_modules/npm/node_modules/minimatch && \
cp -r node_modules/minimatch /usr/local/lib/node_modules/npm/node_modules/ && \
rm -rf /usr/local/lib/node_modules/npm/node_modules/brace-expansion && \
Expand Down
Loading