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

Commit 2aebf35

Browse files
committed
Add Dockerfile
1 parent 870eb91 commit 2aebf35

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:12
2+
3+
RUN mkdir api
4+
5+
WORKDIR /api
6+
7+
COPY . .
8+
9+
RUN npm ci --only=prod
10+
11+
CMD ["node", "src/cli.js"]

0 commit comments

Comments
 (0)