Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN --mount=type=secret,id=npmrc,target=/root/.npmrc,required=false \
RUN pnpm lint && pnpm build \
&& rm -rf dist/src/scripts dist/src/phase-management/mocks \
&& rm -f dist/tsconfig.build.tsbuildinfo
RUN pnpm prune --prod \
RUN CI=true pnpm prune --prod \
&& find node_modules -type f \
\( -name yarn.lock -o -name package-lock.json -o -name pnpm-lock.yaml \
-o -name npm-shrinkwrap.json \) -delete \
Expand Down
2 changes: 1 addition & 1 deletion mock-api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN pnpm install --frozen-lockfile \
&& rm -f dist/tsconfig.build.tsbuildinfo \
&& node --check mock-api/app.js \
&& node --check mock-api/config/default.js \
&& pnpm prune --prod \
&& CI=true pnpm prune --prod \
&& find node_modules -type f \
\( -name yarn.lock -o -name package-lock.json -o -name pnpm-lock.yaml \
-o -name npm-shrinkwrap.json \) -delete \
Expand Down
Loading