Skip to content

Commit 5fb55c0

Browse files
committed
Dockerfile
1 parent f0e99fb commit 5fb55c0

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
node_modules
2-
Dockerfile
32
OpenAPI.json
43
.env
54
database.db

Dockerfile

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
2+
FROM node:12
3+
WORKDIR /app
4+
COPY package*.json ./
5+
RUN npm install
6+
COPY . .
7+
ENV PORT=8080
8+
EXPOSE 8080
9+
CMD [ "npm", "start" ]

0 commit comments

Comments
 (0)