Skip to content

Commit ec20edb

Browse files
Push
1 parent 8067288 commit ec20edb

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

apps/supervisor/Containerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ RUN --mount=type=cache,id=pnpm,target=/root/.local/share/pnpm/store pnpm fetch -
2525
FROM deps-fetcher AS dev-deps
2626
ENV NODE_ENV development
2727

28-
RUN --mount=type=cache,id=pnpm,target=/root/.local/share/pnpm/store pnpm install --frozen-lockfile --offline --ignore-scripts
28+
# TEMP --no-frozen-lockfile and remove --offline for overrides for CVEs
29+
RUN --mount=type=cache,id=pnpm,target=/root/.local/share/pnpm/store pnpm install --no-frozen-lockfile --ignore-scripts
2930

3031
FROM base AS builder
3132

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,11 @@
8484
"overrides": {
8585
"express@^4>body-parser": "1.20.3",
8686
"@remix-run/dev@2.1.0>tar-fs": "2.1.3",
87-
"testcontainers@10.28.0>tar-fs": "3.0.9"
87+
"testcontainers@10.28.0>tar-fs": "3.0.9",
88+
"form-data": "4.0.4",
89+
"ws": "8.17.1",
90+
"semver": "5.7.2",
91+
"cross-spawn": "7.0.5"
8892
}
8993
}
9094
}

0 commit comments

Comments
 (0)