Skip to content
This repository was archived by the owner on Jan 6, 2025. It is now read-only.

Commit 411bbba

Browse files
committed
fix(docker): Fix copy instruction
1 parent f6c39da commit 411bbba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

generator/template/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ FROM node:alpine
1111
EXPOSE 8080
1212
WORKDIR /usr/src/app
1313
RUN npm install serve -g
14-
COPY --from=frontend /usr/src/app/dist ./dist
14+
COPY --from=build /usr/src/app/dist ./dist
1515
USER node
1616
CMD ["serve", "--single", "--port", "8080", "dist"]

0 commit comments

Comments
 (0)