CoolFace
Apppublic

WHF-Manager-API-Key-Sheet/Worker-Checker-01

sourceHugging Facemitupdated 1y agoView on Hugging Face
0likes
Dockerfile6 linesDownload Raw Back to root
1FROM python:3.9-slim2WORKDIR /code3COPY ./requirements.txt /code/requirements.txt4RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt5COPY ./app.py /code/app.py6CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]