FROM python:3.14.3-alpine WORKDIR /app RUN pip install uv COPY . . RUN uv sync RUN chmod +x entrypoint.sh ENTRYPOINT ["./entrypoint.sh"]