exemONE Host Agent Installer Container Image

This commit is contained in:
정훈 변
2024-08-12 10:52:05 +09:00
commit 4288b79459
72 changed files with 5264 additions and 0 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM python:3.11.9-alpine3.20
LABEL version="1.0"
LABEL agent_list="host,container,ndm"
RUN \
pip3 install ansible && \
apk add openssh
WORKDIR /installer
COPY ./installer ./
CMD ["ansible-playbook", "-i", "/installer/inventory", "/installer/agent.yml"]