We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c89bbd commit e7dbc71Copy full SHA for e7dbc71
Dockerfile
@@ -20,9 +20,9 @@ FROM node:12.13-alpine as production
20
21
WORKDIR /app
22
23
-COPY --from=0 /usr/app/dist/src /app
24
-COPY --from=0 /usr/app/package.json /app/
25
-COPY --from=0 /usr/app/yarn.lock /app/
+COPY --from=dev /usr/app/dist/src /app
+COPY --from=dev /usr/app/package.json /app/
+COPY --from=dev /usr/app/yarn.lock /app/
26
27
RUN yarn install --frozen-lockfile --production && yarn cache clean
28
0 commit comments