Spaces:
Paused
Paused
File size: 167 Bytes
7832245 |
1 2 3 4 5 6 7 8 |
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
VOLUME /data
EXPOSE 22222
CMD ["python", "-m", "apis.chat_api"] |