Files
kraussnet-ansible-action/Dockerfile
2025-08-13 16:11:13 -07:00

8 lines
162 B
Docker

FROM alpine:3.22
RUN apk update && \
apk add bash py3-pip step-cli && \
pip3 install ansible
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]