CoolFace
Apppublic

Clone04/websocket

sourceHugging Faceccupdated 4y agoView on Hugging Face
0likes
Dockerfile8 linesDownload Raw Back to root
1FROM python:3.92WORKDIR /fastapi/app3COPY ./requirements.txt /fastapi/requirements.txt4RUN pip install --no-cache-dir --upgrade -r /fastapi/requirements.txt5COPY ./app /fastapi/app6EXPOSE 78607CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]8