llm-mixer / Dockerfile
Hansimov's picture
:recycle: [Refactor] Remove docker-compose, and modify host and port
1945d73
raw history blame
No virus
93 Bytes
FROM node:18-slim
WORKDIR $HOME/app
COPY . .
RUN npm install
EXPOSE 23456
CMD node server.js