File tree Expand file tree Collapse file tree 3 files changed +3
-10
lines changed
Expand file tree Collapse file tree 3 files changed +3
-10
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ WORKDIR /opt/app-root/extension-source
2121
2222# copy source code
2323COPY --chown=1001:root *.ts /opt/app-root/extension-source/
24- COPY --chown=1001:root pnpm-workspace-image-build .yaml /opt/app-root/extension-source/pnpm-workspace.yaml
24+ COPY --chown=1001:root pnpm-workspace.yaml /opt/app-root/extension-source/pnpm-workspace.yaml
2525COPY --chown=1001:root pnpm-lock.yaml /opt/app-root/extension-source/
2626COPY --chown=1001:root .gitignore /opt/app-root/extension-source/
2727COPY --chown=1001:root package.json /opt/app-root/extension-source/
@@ -54,7 +54,7 @@ RUN echo "node-linker=hoisted" >> /opt/app-root/extension/.npmrc
5454RUN eval 'dep_version() { pnpm list -P $1 --json --depth 0 |jq -r ".[0].dependencies.\" $1\" .version"; };' && \
5555 ISOMORPHIC_WS_VERSION=$(dep_version "isomorphic-ws" ) && \
5656 echo adding isomorphic-ws version ${ISOMORPHIC_WS_VERSION} && \
57- pnpm --dir /opt/app-root/extension add isomorphic-ws@${ISOMORPHIC_WS_VERSION} --prod
57+ pnpm --dir /opt/app-root/extension --workspace-root add isomorphic-ws@${ISOMORPHIC_WS_VERSION} --prod
5858
5959# Copy the extension to a new image
6060FROM scratch
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11packages :
22 - packages/*
3- - ' tests/*'
3+ - tests/*
44
55onlyBuiltDependencies :
66 - esbuild
You can’t perform that action at this time.
0 commit comments