CoolFace
Apppublic

mjpsm/progress-generation-model-api

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
Dockerfile11 linesDownload Raw Back to root
1FROM python:3.102 3WORKDIR /app4 5COPY requirements.txt .6 7RUN pip install --no-cache-dir -r requirements.txt8 9COPY . .10 11CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]