Skip to content
This repository was archived by the owner on Nov 17, 2022. It is now read-only.

Commit a696436

Browse files
committed
Create Dockerfile
1 parent d0e2a40 commit a696436

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Dockerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM node:13.8
2+
COPY package.json /package.json
3+
COPY package-lock.json /package-lock.json
4+
COPY src /src
5+
COPY server /server
6+
COPY public /public
7+
COPY build /build
8+
RUN npm install
9+
RUN npm install serve
10+
RUN npm run build
11+
CMD ["serve", "dist"]

0 commit comments

Comments
 (0)