llm-api-hf / Dockerfile
karim23657's picture
Update Dockerfile
eda1a39 verified
raw
history blame
400 Bytes
FROM python:3.9
RUN pwd
WORKDIR $HOME/app
COPY . .
RUN mkdir -p /.cache && chmod -R 777 /.cache
RUN pwd
RUN ls
RUN pip install setuptools_scm
RUN pip install --upgrade wheel
RUN pip install sphinxcontrib-wavedrom
# RUN pip install wavedrom --no-build-isolation
# RUN pip install wavedrom==2.0.3.post3
RUN pip install -r requirements.txt
VOLUME /data
EXPOSE 23333
CMD ["python", "-m", "apis.chat_api"]