1
0
Fork 0
mirror of https://github.com/dawidd6/action-ansible-playbook.git synced 2024-11-22 15:32:18 +00:00
action-ansible-playbook/Dockerfile
Dawid Dziurla f37fb6b3e0
Dockerfile: install bind-tools, remove bash
bind-tools is needed for host recognition by names within network
2020-03-21 20:02:02 +01:00

7 lines
88 B
Docker

FROM alpine
RUN apk -U add ansible bind-tools
COPY main.sh /
ENTRYPOINT ["/main.sh"]