Spaces:
Sleeping
Sleeping
| FROM python:3.9 | |
| WORKDIR /app | |
| COPY requirements.txt . | |
| RUN pip install -r requirements.txt | |
| COPY . . | |
| # Start the Web Server on port 7860 (Standard for HF) | |
| CMD ["python", "app.py"] |
| FROM python:3.9 | |
| WORKDIR /app | |
| COPY requirements.txt . | |
| RUN pip install -r requirements.txt | |
| COPY . . | |
| # Start the Web Server on port 7860 (Standard for HF) | |
| CMD ["python", "app.py"] |