llm-api-hf / Dockerfile
karim23657's picture
Upload folder using huggingface_hub
bb98a44 verified
raw
history blame
183 Bytes
FROM python:3.11-slim
WORKDIR "/app"
RUN pip install -r requirements.txt
RUN mkdir -p /.cache && chmod -R 777 /.cache
# VOLUME /data
EXPOSE 23333
CMD ["python", "-m", "apis.chat_api"]