diff options
author | Taka Cho <takamune.cho@att.com> | 2019-11-01 15:52:15 -0400 |
---|---|---|
committer | Taka Cho <takamune.cho@att.com> | 2019-11-01 16:16:51 -0400 |
commit | ef127a5f590c092e5020d8ecd6cf10eaa8329ddc (patch) | |
tree | d8c93ddfb60d58abd12026154c4cf4d31d9ce253 /ansible-server/src/main/Dockerfile | |
parent | 2041397b3c95396e5c1ee04c21daacc4ccf3fa08 (diff) |
migrate ansible server python scripts to python3
python3 is required for R6 release
Change-Id: I94decf6ead79119f90f5fa70578b4cea8a3e58b7
Issue-ID: CCSDK-1893
Signed-off-by: Taka Cho <takamune.cho@att.com>
Diffstat (limited to 'ansible-server/src/main/Dockerfile')
-rw-r--r-- | ansible-server/src/main/Dockerfile | 13 |
1 files changed, 7 insertions, 6 deletions
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 |