agent-verif / Dockerfile
claude's playground
Add frontend UI to HF Spaces deployment
a5b27e0
Raw
History Blame Contribute Delete
234 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY run_api.py .
COPY index.html .
# HF Spaces uses port 7860
ENV PORT=7860
EXPOSE 7860
CMD ["python", "run_api.py"]