Spaces:
Sleeping
Sleeping
File size: 163 Bytes
5a836c3 |
1 2 3 4 5 6 7 |
FROM python:3.11-slim
WORKDIR $HOME/app
COPY requirements.txt .
RUN pip install -r requirements.txt
VOLUME /data
EXPOSE 23333
CMD ["python", "-m", "apis.chat_api"] |