deploy / deploy (push) Successful in 4m48s
Change-Id: If4e8a826d76819817e111cc7477a135f0c871db9
15 lines
235 B
Docker
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"]
|