hf-llm-api-dup / Dockerfile
radinhas's picture
Update Dockerfile
c9875a0
raw
history blame
No virus
153 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","-d"]