FROM 086679231553.dkr.ecr.us-east-1.amazonaws.com/docker-parent-images:python313

# unbuffered stdout so progress is visible live when logs are piped to a file
ENV PYTHONUNBUFFERED=1

COPY requirements.txt ./

RUN pip install --upgrade pip setuptools && \
    pip install -r requirements.txt

COPY app.py ./
COPY src ./src

CMD ["python", "app.py"]
