14
docker/ansible-playbook.Dockerfile
Normal file
14
docker/ansible-playbook.Dockerfile
Normal file
@@ -0,0 +1,14 @@
|
||||
FROM ubuntu:latest
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
RUN apt-get update -y
|
||||
RUN apt-get install -y gcc python3-dev
|
||||
RUN apt-get install -y openssh-client
|
||||
RUN apt-get install python3-pip -y
|
||||
RUN apt-get install python3-virtualenv -y
|
||||
RUN pip3 install ansible --break-system-packages
|
||||
RUN pip3 install ansible-runner --break-system-packages
|
||||
RUN mkdir /workspace
|
||||
RUN mkdir /scripts
|
||||
COPY scripts /scripts
|
||||
COPY playbook-sample-workspace /workspace
|
||||
ENTRYPOINT ["python3", "/scripts/run-ansible-playbook.py"]
|
||||
Reference in New Issue
Block a user