2022-04-20 17:41:18 +00:00
|
|
|
FROM alpine:3.15
|
2016-08-06 14:21:34 +00:00
|
|
|
|
2020-10-31 15:47:55 +00:00
|
|
|
RUN apk add --no-cache ansible curl \
|
|
|
|
&& curl -L https://github.com/aelsabbahy/goss/releases/latest/download/goss-linux-amd64 -o /usr/local/bin/goss \
|
|
|
|
&& chmod +rx /usr/local/bin/goss
|
2016-08-06 14:21:34 +00:00
|
|
|
|
|
|
|
CMD ["ansible-playbook", "--help"]
|