From ed01feda01baa883f69b155ca150e9cc90afb5ed Mon Sep 17 00:00:00 2001 From: Dave North Date: Tue, 25 Sep 2018 10:48:55 -0400 Subject: [PATCH] Add dockerfile --- Dockerfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..7b537da --- /dev/null +++ b/Dockerfile @@ -0,0 +1,14 @@ +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"]