Spaces:
Sleeping
Sleeping
File size: 400 Bytes
eda1a39 0c5bfb2 7f65ca7 9f839e0 84499eb 9f839e0 bb98a44 0c5bfb2 bb98a44 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
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"] |