diff options
author | Dan Timoney <djtimoney@att.com> | 2021-02-10 17:05:21 -0500 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2021-02-10 17:19:09 -0500 |
commit | b3437f7917e50673744d8cd78a2e1585b4bb08d7 (patch) | |
tree | dc9d6934ab7523ebd89bc1ee1da184331f4b4e8b /ansible-server/src/main/Dockerfile | |
parent | 1f4e903277d4f94db0bed99245026b82fa36fba3 (diff) |
Fix ansible server build
Ansible-server build is failing due to a change in python cryptography module,
which now requires latest rust compiler version to be installed.
Issue-ID: CCSDK-3151
Signed-off-by: Dan Timoney <dtimoney@att.com>
Change-Id: I36396c346c12cb432f696ae559d7f0b224c92a78
Diffstat (limited to 'ansible-server/src/main/Dockerfile')
-rw-r--r-- | ansible-server/src/main/Dockerfile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ansible-server/src/main/Dockerfile b/ansible-server/src/main/Dockerfile index 9536a646..27eeb8a3 100644 --- a/ansible-server/src/main/Dockerfile +++ b/ansible-server/src/main/Dockerfile @@ -1,4 +1,4 @@ -FROM onap/integration-python:7.0.1 +FROM onap/integration-python:8.0.0 LABEL maintainer="SDN-C Team (sdnc@lists.openecomp.org)" ARG PIP_TAG=18.0 @@ -19,6 +19,8 @@ RUN apk add --no-cache curl \ iputils \ bash \ openssh-client &&\ + curl https://sh.rustup.rs -sSf | sh -s -- -y &&\ + source $HOME/.cargo/env &&\ apk add --no-cache --virtual .build-deps build-base \ libffi-dev \ openssl-dev \ |