ElevenClip-AI / Dockerfile
JakgritB
fix(hf-space): replace full app with minimal landing page
8e8e9d6
raw
history blame contribute delete
196 Bytes
FROM python:3.11-slim
WORKDIR /app
RUN pip install --no-cache-dir fastapi uvicorn
COPY landing.py ./landing.py
EXPOSE 7860
CMD ["uvicorn", "landing:app", "--host", "0.0.0.0", "--port", "7860"]