Spaces:
Runtime error
Runtime error
File size: 247 Bytes
5a836c3 246eab5 e491840 c5f3581 5a836c3 246eab5 5a836c3 |
1 2 3 4 5 6 7 8 9 |
FROM python:3.11-slim
WORKDIR $HOME/app
COPY requirements.txt $HOME/app
RUN mkdir /.cache && chmod 777 /.cache
RUN pip install setuptools wheel
RUN pip install -r requirements.txt
COPY . $HOME/app
EXPOSE 23333
CMD ["python", "-m", "apis.chat_api"] |