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