CoolFace
Apppublic

AdamK29/Meta-OpenENV-Hackathon

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
Dockerfile23 linesDownload Raw Back to root
1FROM python:3.11-slim2 3WORKDIR /app4 5RUN apt-get update && apt-get install -y \6    build-essential \7    gcc \8    curl \9    socat \10    && rm -rf /var/lib/apt/lists/*11 12COPY . .13 14RUN pip install --upgrade pip15RUN pip install --no-cache-dir -r requirements.txt16 17ENV PYTHONPATH=/app18 19# HF expects 786020EXPOSE 786021 22# Map 7860 → 8000 using socat23CMD ["uvicorn", "server.app:app", "--host", "0.0.0.0", "--port", "7860"]