Add dockerfile

This commit is contained in:
Dave North 2018-09-25 10:48:55 -04:00
parent bba3d6e81f
commit ed01feda01

14
Dockerfile Normal file
View File

@ -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"]