aws-target-group-cleanup/Dockerfile

15 lines
216 B
Docker
Raw Normal View History

2018-09-25 16:48:55 +02:00
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"]