Skip to content

Commit 4badcf5

Browse files
committed
init
0 parents  commit 4badcf5

File tree

5 files changed

+483
-0
lines changed

5 files changed

+483
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

Dockerfile

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM node:12-alpine
2+
3+
WORKDIR /usr/src/app
4+
COPY package*.json ./
5+
RUN npm install
6+
7+
COPY . .
8+
9+
EXPOSE 3000;
10+
11+
CMD [ "node", "server.js" ]

0 commit comments

Comments
 (0)