All checks were successful
Build and push docker image / build (push) Successful in 1m52s
12 lines
302 B
Docker
12 lines
302 B
Docker
# original: https://github.com/William-Yeh/docker-ansible/blob/master/alpine3/Dockerfile
|
|
|
|
FROM gitea/runner-images:ubuntu-latest
|
|
|
|
RUN apt update && apt install --no-install-recommends -y ansible ansible-lint sshpass
|
|
|
|
RUN mkdir /ansible
|
|
|
|
WORKDIR /ansible
|
|
|
|
CMD ["/usr/bin/ansible-playbook", "--version"]
|