commit inicial

This commit is contained in:
Mauro Torrez
2019-09-18 20:34:42 -03:00
parent bdf7363c01
commit bc17fab010
4 changed files with 100 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM python:3.7-slim-buster
ARG ANSIBLE_VERSION=2.8.5
ADD entrypoint.sh /
RUN set -x \
&& chmod +x /entrypoint.sh \
&& pip3 install -U pip \
&& pip3 install ansible==${ANSIBLE_VERSION} \
&& rm -rf /root/.cache
VOLUME /ansible
ENTRYPOINT ["/entrypoint.sh"]