Spaces:
Sleeping
Sleeping
FROM python:3.11-slim | |
WORKDIR $HOME/app | |
COPY requirements.txt $HOME/app | |
RUN mkdir /.cache && chmod 777 /.cache | |
RUN pip install --upgrade pip setuptools wheel | |
RUN pip install Cmake | |
RUN pip install svgwrite==1.4.3 six==1.17.0 pyyaml==6.0.2 | |
RUN pip install wavedrom==2.0.3.post3 | |
RUN pip install -r requirements.txt | |
COPY . $HOME/app | |
EXPOSE 23333 | |
CMD ["python", "-m", "apis.chat_api"] |