whatpull/neuronface
0
1FROM python:3.11-slim2 3WORKDIR /app4 5RUN apt-get update && apt-get install -y \6 git \7 curl \8 && rm -rf /var/lib/apt/lists/*9 10COPY requirements.txt .11RUN pip install --no-cache-dir -r requirements.txt12 13COPY . .14 15EXPOSE 786016 17CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]18 