mirror of
https://github.com/LLM-Red-Team/kimi-free-api.git
synced 2024-11-01 20:09:20 +08:00
11 lines
144 B
Docker
11 lines
144 B
Docker
FROM node:lts
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . /app
|
|
|
|
RUN npm i --registry http://registry.npmmirror.com && npm run build
|
|
|
|
EXPOSE 8000
|
|
|
|
CMD ["npm", "start"] |