Add Dockerfile

This commit is contained in:
Adam Millerchip 2023-10-02 10:15:40 +09:00
parent c836387169
commit 6ba7fb1555
2 changed files with 8 additions and 0 deletions

2
.dockerignore Normal file
View File

@ -0,0 +1,2 @@
.git/
node_modules/

6
Dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM node:20
WORKDIR /root/kot
ADD . .
RUN npm install
RUN npm install -g
ENTRYPOINT ["kot"]