File size: 231 Bytes
4f16637 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | 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"]
|