CoolFace
Apppublic

RAHULSR2806/devos-module2

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
Dockerfile10 linesDownload Raw Back to root
1FROM python:3.11-slim2WORKDIR /app3RUN apt-get update && apt-get install -y gcc g++ curl && rm -rf /var/lib/apt/lists/*4COPY requirements.txt .5RUN pip install --no-cache-dir -r requirements.txt6COPY shared/ ./shared/7COPY main.py .8EXPOSE 78609CMD ["python", "-m", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]10