diff options
author | Ethan Lynn <xuanlangjian@gmail.com> | 2019-09-09 16:34:54 +0800 |
---|---|---|
committer | Ethan Lynn <xuanlangjian@gmail.com> | 2019-09-09 16:38:56 +0800 |
commit | b14042c7ad57d9f0050ed31d9778d3d602de7f03 (patch) | |
tree | 2e1a461c84367b5a82f686c0983c5b5bf29be331 | |
parent | 5c428e9ee21dd953673d03ebfddb7bc174ffe3ba (diff) |
Workaround stage failure
Split pecan requirements to another file
Change-Id: Iefa9e103ea8dcd69006920c0c382985b6eab951b
Issue-ID: MULTICLOUD-736
Signed-off-by: Ethan Lynn <xuanlangjian@gmail.com>
-rw-r--r-- | vio/docker/Dockerfile | 1 | ||||
-rw-r--r-- | vio/pecan-requirements.txt | 6 | ||||
-rw-r--r-- | vio/requirements.txt | 6 |
3 files changed, 7 insertions, 6 deletions
diff --git a/vio/docker/Dockerfile b/vio/docker/Dockerfile index 96457ec..8afe1cd 100644 --- a/vio/docker/Dockerfile +++ b/vio/docker/Dockerfile @@ -22,6 +22,7 @@ RUN apk update && \ unzip multicloud-vio.zip && \ rm -rf multicloud-vio.zip && \ pip3 install -r /opt/vio/requirements.txt && \ + pip3 install -r /opt/vio/pecan-requirements.txt && \ mkdir -p /var/log/onap/multicloud/vio && \ chmod a+rw /var/log/onap/multicloud/vio && \ chown onap:onap -R /opt/vio/ && \ diff --git a/vio/pecan-requirements.txt b/vio/pecan-requirements.txt new file mode 100644 index 0000000..33dcab4 --- /dev/null +++ b/vio/pecan-requirements.txt @@ -0,0 +1,6 @@ +# for pecan framework +# uwsgi +pecan>=1.2.1 +oslo.concurrency>=3.21.0 +oslo.config>=4.11.0 +oslo.service>=1.25.0 diff --git a/vio/requirements.txt b/vio/requirements.txt index 3fa9c4a..20a1807 100644 --- a/vio/requirements.txt +++ b/vio/requirements.txt @@ -27,12 +27,6 @@ onappylog>=1.0.9 # for event oslo_messaging -# for pecan framework -# uwsgi -pecan>=1.2.1 -oslo.concurrency>=3.21.0 -oslo.config>=4.11.0 -oslo.service>=1.25.0 eventlet>=0.20.0 PyYAML>=3.1.0 |