CoolFace
Apppublic

iShowRelx5/specForge-api

sourceHugging Faceupdated 4mo agoView on Hugging Face
0likes
Dockerfile16 linesDownload Raw Back to root
1FROM python:3.13-slim2 3WORKDIR /app4 5COPY requirements.txt .6RUN pip install --no-cache-dir -r requirements.txt7 8COPY backend/ backend/9 10ENV PYTHONUNBUFFERED=111ENV PORT=786012 13EXPOSE 786014 15CMD ["sh", "-c", "uvicorn main:app --app-dir backend --host 0.0.0.0 --port ${PORT:-7860}"]16