CoolFace
Apppublic

sxchin01/code-security-audit-env-3

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
Dockerfile12 linesDownload Raw Back to root
1FROM public.ecr.aws/docker/library/python:3.11.9-slim2 3WORKDIR /app4 5COPY requirements.txt .6RUN pip install --no-cache-dir -r requirements.txt7 8COPY . .9 10EXPOSE 786011 12CMD ["python", "-m", "uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]