6 lines
85 B
Docker
6 lines
85 B
Docker
FROM alpine:3.10
|
|
|
|
RUN apk add --no-cache ansible
|
|
|
|
CMD ["ansible-playbook", "--help"]
|