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.
2018-09-25 10:48:55 -04:00

15 lines
216 B
Docker

FROM python:2.7-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"]