Add Dockerfile
This commit is contained in:
parent
c836387169
commit
6ba7fb1555
2 changed files with 8 additions and 0 deletions
2
.dockerignore
Normal file
2
.dockerignore
Normal file
|
@ -0,0 +1,2 @@
|
|||
.git/
|
||||
node_modules/
|
6
Dockerfile
Normal file
6
Dockerfile
Normal file
|
@ -0,0 +1,6 @@
|
|||
FROM node:20
|
||||
WORKDIR /root/kot
|
||||
ADD . .
|
||||
RUN npm install
|
||||
RUN npm install -g
|
||||
ENTRYPOINT ["kot"]
|
Loading…
Reference in a new issue