Skip to content

Commit 057189c

Browse files
author
Luuk Nieuwdorp
committed
Create Dockerfile
1 parent 8a2edf3 commit 057189c

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Dockerfile

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM node:latest
2+
3+
RUN mkdir -p /usr/src/bot
4+
WORKDIR /usr/src/bot
5+
6+
COPY package.json /usr/src/bot
7+
RUN npm install
8+
9+
COPY . /usr/src/bot
10+
11+
CMD ["node", "index.js"]

0 commit comments

Comments
 (0)