commit inicial
This commit is contained in:
10
Dockerfile
Normal file
10
Dockerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user