mirror of
https://github.com/dawidd6/action-ansible-playbook.git
synced 2024-11-25 18:07:47 +00:00
7 lines
82 B
Docker
7 lines
82 B
Docker
FROM alpine
|
|
|
|
RUN apk -U add ansible bash
|
|
|
|
COPY main.sh /
|
|
|
|
ENTRYPOINT ["/main.sh"]
|