We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57458ad commit 3a61655Copy full SHA for 3a61655
Dockerfile
@@ -1,7 +1,6 @@
1
FROM node
2
WORKDIR /blockwise
3
COPY package.json .
4
-COPY npm-shrinkwrap.json .
5
RUN npm config set maxsockets 1
6
RUN npm install
7
RUN npm audit --audit-level=moderate
@@ -12,7 +11,6 @@ RUN npm run build
12
11
FROM node AS publish
13
14
COPY --from=0 /blockwise/package.json .
15
-COPY --from=0 /blockwise/npm-shrinkwrap.json .
16
COPY --from=0 /blockwise/dist dist
17
RUN rm dist/*.test.js dist/*.test.d.ts dist/*.example.js dist/*.example.d.ts
18
ENTRYPOINT ["/bin/bash"]
0 commit comments