Spaces:
Sleeping
Sleeping
File size: 380 Bytes
9dc64e3 0c5bfb2 9dc64e3 076afd9 43a8d02 bb98a44 9dc64e3 bb98a44 |
1 2 3 4 5 6 7 8 9 10 11 12 |
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"] |