# generated by https://github.com/ministryofjustice/money-to-prisoners-deploy
FROM python:3.12-alpine
COPY entrypoint.py /usr/local/bin/clean-ecr
RUN set -eux; \
  chmod +x /usr/local/bin/clean-ecr \
  && \
  pip install --upgrade setuptools pip wheel \
  && \
  pip install awscli
ENTRYPOINT ["clean-ecr"]
