Files
sethtest/Dockerfile
T
Scaffolder 59c9a95154
deploy / deploy (push) Successful in 4m48s
initial commit
Change-Id: If4e8a826d76819817e111cc7477a135f0c871db9
2026-05-13 18:29:35 +00:00

15 lines
235 B
Docker

FROM public.ecr.aws/docker/library/python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENV PORT=8080
EXPOSE 8080
CMD ["gunicorn", "--bind", "0.0.0.0:8080", "app:app"]