Skip to content

Commit f9aaa47

Browse files
committed
moved dockerfile to top level
1 parent 165aad4 commit f9aaa47

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Dockerfile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
FROM node:16
2+
3+
# Create app directory
4+
WORKDIR /usr/src/app
5+
6+
# Install app dependencies
7+
COPY package*.json ./
8+
9+
RUN npm install
10+
# Bundle app source
11+
COPY . .
12+
13+
EXPOSE 3000
14+
CMD [ "npm", "start" ]

0 commit comments

Comments
 (0)