CoolFace
Apppublic

sonygod/flash

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
Dockerfile14 linesDownload Raw Back to root
1FROM python:3.9-slim2 3WORKDIR /app4 5COPY ./requirements.txt /app/requirements.txt6COPY ./app.py /app/app.py7 8 9RUN pip install --no-cache-dir -r requirements.txt10 11 12EXPOSE 786013 14CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]