llm-api-hf / Dockerfile
karim23657's picture
Update Dockerfile
0c5bfb2 verified
raw
history blame
216 Bytes
FROM python:3.11-slim
RUN pwd
WORKDIR $HOME/app
COPY . .
RUN mkdir -p /.cache && chmod -R 777 /.cache
RUN pwd
RUN ls
RUN pip install -r requirements.txt
VOLUME /data
EXPOSE 23333
CMD ["python", "-m", "apis.chat_api"]