Zhuohan's picture
Deploy Task 2 final-test portal
4f16637 verified
raw
history blame contribute delete
231 Bytes
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"]