CoolFace
Apppublic

NeuralNodeAI/sentic-ai-backend

sourceHugging Faceupdated 8mo agoView on Hugging Face
0likes
Dockerfile7 linesDownload Raw Back to root
1FROM python:3.92WORKDIR /code3COPY ./requirements.txt /code/requirements.txt4RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt5COPY . .6CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]7