diff options
author | Liexiang Yue <yueliexiang@chinamobile.com> | 2019-05-22 12:12:25 +0800 |
---|---|---|
committer | Liexiang Yue <yueliexiang@chinamobile.com> | 2019-05-22 12:12:25 +0800 |
commit | cc399bdde795b839add743b7ad6e5f97d4b895b6 (patch) | |
tree | 733fed386e0416b268ac8a6d0fa83787bb51694f /starlingx/docker | |
parent | 629f34264bb5301fb9cc1541fb0e3132faa706af (diff) |
Update mc-openstack versin to 1.3.4
Issue-ID: MULTICLOUD-641
Change-Id: I8a331cae52d9f58b3b3ef43ec0091aef32401eb4
Signed-off-by: Liexiang Yue <yueliexiang@chinamobile.com>
Diffstat (limited to 'starlingx/docker')
-rw-r--r-- | starlingx/docker/Dockerfile | 2 | ||||
-rwxr-xr-x | starlingx/docker/build_image.sh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/starlingx/docker/Dockerfile b/starlingx/docker/Dockerfile index e2fbf960..ee627bef 100644 --- a/starlingx/docker/Dockerfile +++ b/starlingx/docker/Dockerfile @@ -36,7 +36,7 @@ RUN addgroup -S onap && adduser -S -G onap onap RUN apk update && \ apk add bash uwsgi curl memcached wget unzip gcc make libc-dev libffi-dev openssl-dev && \ cd /opt/ && \ - wget -O /opt/multicloud-openstack-starlingx.zip "https://nexus.onap.org/service/local/artifact/maven/redirect?r=snapshots&g=org.onap.multicloud.openstack&a=multicloud-openstack-starlingx&e=zip&v=1.3.3-SNAPSHOT" && \ + wget -O /opt/multicloud-openstack-starlingx.zip "https://nexus.onap.org/service/local/artifact/maven/redirect?r=snapshots&g=org.onap.multicloud.openstack&a=multicloud-openstack-starlingx&e=zip&v=1.3.4-SNAPSHOT" && \ unzip -q -o -B /opt/multicloud-openstack-starlingx.zip -d /opt/ && \ rm -f /opt/multicloud-openstack-starlingx.zip && \ pip install -r /opt/starlingx/requirements.txt && \ diff --git a/starlingx/docker/build_image.sh b/starlingx/docker/build_image.sh index 11ce0968..7650fa4e 100755 --- a/starlingx/docker/build_image.sh +++ b/starlingx/docker/build_image.sh @@ -20,8 +20,8 @@ echo "DOCKER_BUILD_DIR=${DOCKER_BUILD_DIR}" cd ${DOCKER_BUILD_DIR} BUILD_ARGS="--no-cache" -VERSION="1.3.3-SNAPSHOT" -STAGING="1.3.3-STAGING" +VERSION="1.3.4-SNAPSHOT" +STAGING="1.3.4-STAGING" OS_VERSION="starlingx" IMAGE_NAME="nexus3.onap.org:10003/onap/multicloud/openstack-${OS_VERSION}" |