First working release :)
All checks were successful
/ build-docker-image (push) Successful in 7s

This commit is contained in:
2024-09-07 02:28:07 +01:00
parent d5edc731f3
commit 522a2f854b
7 changed files with 140 additions and 0 deletions

View File

@@ -6,3 +6,13 @@ 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 /project
RUN mkdir /scripts
RUN mkdir /data
COPY scripts /scripts
COPY playbook-sample-project /project
ENTRYPOINT ["python3", "/scripts/run.py"]