llm-api-hf / Dockerfile
karim23657's picture
Update Dockerfile
309d62e verified
raw
history blame
254 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 wavedrom==2.0.3.post3
RUN pip install -r requirements.txt
VOLUME /data
EXPOSE 23333
CMD ["python", "-m", "apis.chat_api"]