CoolFace
Apppublic

Ssonko-jP/iot-security

sourceHugging Facegfdlupdated 1y agoView on Hugging Face
0likes
Dockerfile11 linesDownload Raw Back to root
1FROM python:3.11.4 2 3WORKDIR /code4 5COPY ./requirements.txt /code/requirements.txt6 7RUN pip install -r /code/requirements.txt8 9COPY ./app /code/app10 11CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]