LLM-api / Dockerfile
ka1kuk's picture
Upload 21 files
da27d7f
raw
history blame
No virus
148 Bytes
FROM python:3.11-slim
WORKDIR $HOME/app
COPY . .
RUN pip install -r requirements.txt
VOLUME /data
EXPOSE 23333
CMD ["python", "-m", "apis.chat_api"]