Update Dockerfile
Browse files- Dockerfile +0 -2
Dockerfile
CHANGED
@@ -12,11 +12,9 @@ RUN yarn install --registry https://registry.npmmirror.com/ && yarn run build
|
|
12 |
|
13 |
FROM node:lts-alpine
|
14 |
|
15 |
-
COPY --from=BUILD_IMAGE /app/configs /app/configs
|
16 |
COPY --from=BUILD_IMAGE /app/package.json /app/package.json
|
17 |
COPY --from=BUILD_IMAGE /app/dist /app/dist
|
18 |
COPY --from=BUILD_IMAGE /app/public /app/public
|
19 |
-
COPY --from=BUILD_IMAGE /app/node_modules /app/node_modules
|
20 |
|
21 |
# Install production dependencies
|
22 |
RUN yarn install --production --registry https://registry.npmmirror.com/
|
|
|
12 |
|
13 |
FROM node:lts-alpine
|
14 |
|
|
|
15 |
COPY --from=BUILD_IMAGE /app/package.json /app/package.json
|
16 |
COPY --from=BUILD_IMAGE /app/dist /app/dist
|
17 |
COPY --from=BUILD_IMAGE /app/public /app/public
|
|
|
18 |
|
19 |
# Install production dependencies
|
20 |
RUN yarn install --production --registry https://registry.npmmirror.com/
|