adding docker file

This commit is contained in:
hax4dazy 2021-05-20 03:24:44 +02:00
parent 6572ddd769
commit 89b00e62fb

8
Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM node:latest
# Create the directory!
RUN mkdir -p /usr/src/korral
WORKDIR /usr/src/korral
# Our precious bot
COPY . /usr/src/korral
# Start me!
CMD ["npm start"]