mirror of
https://github.com/RogerSik/aws-target-group-cleanup.git
synced 2024-11-23 16:20:27 +01:00
15 lines
216 B
Docker
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"]
|