CoolFace
Apppublic

TusharPatel/webagentos-brain

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
Dockerfile12 linesDownload Raw Back to root
1FROM python:3.11-slim2 3WORKDIR /code4 5COPY ./requirements.txt /code/requirements.txt6RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt7 8COPY . .9 10# HF Spaces uses port 786011CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]12