8 lines
84 B
Docker
8 lines
84 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk update && apk upgrade
|
|
RUN apk add ansible
|
|
|
|
CMD ansible
|
|
|