hf-llm-api / Dockerfile
Hansimov's picture
:gem: [Feature] Enable Docker deployment, and add requirements
5a836c3
raw history blame
No virus
163 Bytes
FROM python:3.11-slim
WORKDIR $HOME/app
COPY requirements.txt .
RUN pip install -r requirements.txt
VOLUME /data
EXPOSE 23333
CMD ["python", "-m", "apis.chat_api"]