Spaces:
Sleeping
Sleeping
| FROM python:3.12-slim | |
| WORKDIR /app | |
| COPY requirements.txt host.py ./ | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| EXPOSE 7860 | |
| CMD ["python", "host.py"] |
| FROM python:3.12-slim | |
| WORKDIR /app | |
| COPY requirements.txt host.py ./ | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| EXPOSE 7860 | |
| CMD ["python", "host.py"] |