File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ WORKDIR /app/
1414RUN yarn install --frozen-lockfile --production=false --no-progress
1515
1616# Copy over the server source code
17- COPY server/ /app/server/
17+ # COPY server/ /app/server/
1818
1919# Finally run the build script
2020RUN yarn run build
@@ -28,7 +28,7 @@ ARG NODE_ENV
2828
2929# Copy over selectively just the things we need, try and avoid the rest
3030COPY --from=builder /app/package.json /app/yarn.lock /app/
31- COPY --from=builder /app/server/dist/ /app/server/dist/
31+ # COPY --from=builder /app/server/dist/ /app/server/dist/
3232
3333# ###############################################################################
3434# Build stage FINAL - COPY everything, once, and then do a clean `yarn install`
You can’t perform that action at this time.
0 commit comments