Spaces:
Sleeping
Sleeping
| FROM python:3.10 | |
| WORKDIR /app | |
| COPY requirements.txt requirements.txt | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| COPY . . | |
| RUN mkdir -p /app/logs | |
| RUN chmod 777 /app/logs | |
| EXPOSE 7860 | |
| CMD ["python", "funpay_loop.py"] | |