This repository has been archived on 2025-04-27. You can view files and clone it, but cannot push or open issues or pull requests.

15 lines
216 B
Docker

FROM python:3.9-alpine
RUN apk --no-cache add ca-certificates
RUN mkdir /src
COPY src/ /src/
WORKDIR /src
RUN pip install -r requirements.txt
ENTRYPOINT ["python","/src/aws-target-group-cleanup.py"]
CMD ["-h"]