WHF-Manager-API-Key-Sheet/Worker-Checker-01
0
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"]