| FROM python:3.9 | |
| WORKDIR /code | |
| COPY requirements.txt . | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| COPY . . | |
| # Port 7860 open karna zaroori hai HF ke liye | |
| EXPOSE 7860 | |
| CMD ["python", "app.py"] |
| FROM python:3.9 | |
| WORKDIR /code | |
| COPY requirements.txt . | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| COPY . . | |
| # Port 7860 open karna zaroori hai HF ke liye | |
| EXPOSE 7860 | |
| CMD ["python", "app.py"] |