X-Git-Url: https://gerrit.onap.org/r/gitweb?p=ccsdk%2Fdistribution.git;a=blobdiff_plain;f=ansible-server%2Fsrc%2Fmain%2FDockerfile;h=5a1c394d07c12b8c82bdcb299a4e4a252f1a2f43;hp=d44f5c39d3b811d2ff1eca486f25e0fc6a00fdc0;hb=ef127a5f590c092e5020d8ecd6cf10eaa8329ddc;hpb=2041397b3c95396e5c1ee04c21daacc4ccf3fa08 diff --git a/ansible-server/src/main/Dockerfile b/ansible-server/src/main/Dockerfile index d44f5c39..5a1c394d 100644 --- a/ansible-server/src/main/Dockerfile +++ b/ansible-server/src/main/Dockerfile @@ -8,23 +8,24 @@ WORKDIR /opt/ COPY ansible-server/requirements.txt ansible-server/requirements.txt RUN apk add --no-cache curl \ + iputils \ bash \ - py2-pip \ + py3-pip \ openssh-client \ - python2 &&\ + python3 &&\ apk add --no-cache --virtual .build-deps build-base \ libffi-dev \ openssl-dev \ - python2-dev &&\ - pip install --no-cache-dir --upgrade pip==$PIP_TAG && \ - pip install --no-cache-dir -r ansible-server/requirements.txt &&\ + python3-dev &&\ + pip3 install --no-cache-dir --upgrade pip==$PIP_TAG && \ + pip3 install --no-cache-dir -r ansible-server/requirements.txt &&\ apk del .build-deps RUN addgroup -S ansible && adduser -S ansible -G ansible + COPY --chown=ansible:ansible ansible-server ansible-server COPY --chown=ansible:ansible configuration/ansible.cfg /etc/ansible/ansible.cfg - WORKDIR /opt/ansible-server RUN mkdir /opt/onap ; ln -s /opt/ansible-server /opt/onap/ccsdk