Spaces:
Sleeping
Sleeping
FROM python:3.11-slim | |
WORKDIR "/app" | |
RUN pip install -r requirements.txt | |
RUN mkdir -p /.cache && chmod -R 777 /.cache | |
# VOLUME /data | |
EXPOSE 23333 | |
CMD ["python", "-m", "apis.chat_api"] |