mirror of
https://github.com/LLM-Red-Team/kimi-free-api.git
synced 2024-12-22 15:49:19 +08:00
add Dockerfile
This commit is contained in:
parent
3dbabb0d47
commit
dc7a953e4f
9
.dockerignore
Normal file
9
.dockerignore
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
logs
|
||||||
|
dist
|
||||||
|
doc
|
||||||
|
node_modules
|
||||||
|
.vscode
|
||||||
|
.git
|
||||||
|
.gitignore
|
||||||
|
README.md
|
||||||
|
*.tar.gz
|
11
Dockerfile
Normal file
11
Dockerfile
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
FROM node:lts
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
COPY . /app
|
||||||
|
|
||||||
|
RUN npm i --registry http://registry.npmmirror.com && npm run build
|
||||||
|
|
||||||
|
EXPOSE 8000
|
||||||
|
|
||||||
|
CMD ["npm", "start"]
|
Loading…
Reference in New Issue
Block a user