Skip to content

Commit e6838c4

Browse files
committed
Add: dockerfile
1 parent b17a6f5 commit e6838c4

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Dockerfile

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
FROM node:16
2+
3+
WORKDIR /app
4+
5+
COPY ./src /app/src
6+
COPY package.json /app
7+
COPY yarn.lock /app
8+
9+
RUN yarn install
10+
11+
CMD yarn start
12+
13+
EXPOSE 3000

0 commit comments

Comments
 (0)