FROM python:3.11.7-alpine WORKDIR /app COPY api . RUN apk add --no-cache curl RUN pip install -r requirements.txt CMD python3 app.py