CoolFace
Apppublic

revanth-3995/rl-devsecops-openenv

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
Dockerfile15 linesDownload Raw Back to root
1FROM python:3.11-slim2 3WORKDIR /app4 5# Ensure curl and build tools are present6RUN apt-get update && apt-get install -y curl build-essential && rm -rf /var/lib/apt/lists/*7 8COPY pyproject.toml requirements.txt ./9RUN pip install --no-cache-dir -r requirements.txt10 11COPY . .12 13EXPOSE 786014 15CMD ["uvicorn", "server.app:app", "--host", "0.0.0.0", "--port", "7860"]