| FROM python:3.12-slim | |
| WORKDIR /app | |
| COPY . /app | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| ENV HOST=0.0.0.0 | |
| ENV PORT=7860 | |
| ENV TASK2_PORTAL_BASE=/task2/test | |
| ENV TASK2_STORAGE_BACKEND=hf_dataset | |
| CMD ["python", "portal.py"] | |
| FROM python:3.12-slim | |
| WORKDIR /app | |
| COPY . /app | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| ENV HOST=0.0.0.0 | |
| ENV PORT=7860 | |
| ENV TASK2_PORTAL_BASE=/task2/test | |
| ENV TASK2_STORAGE_BACKEND=hf_dataset | |
| CMD ["python", "portal.py"] | |