diff options
Diffstat (limited to 'docker/features/Dockerfile')
-rw-r--r-- | docker/features/Dockerfile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/docker/features/Dockerfile b/docker/features/Dockerfile index adcb5454..1fb48829 100644 --- a/docker/features/Dockerfile +++ b/docker/features/Dockerfile @@ -5,7 +5,7 @@ ARG OPENSTACK_TAG=stable/pike ARG FDS_TAG=master COPY thirdparty-requirements.txt thirdparty-requirements.txt -RUN apk --no-cache add --update nodejs nodejs-npm python3 sshpass && \ +RUN apk --no-cache add --update python3 sshpass && \ apk --no-cache add --virtual .build-deps --update \ python-dev python3-dev build-base linux-headers libffi-dev \ openssl-dev libjpeg-turbo-dev && \ @@ -19,9 +19,6 @@ RUN apk --no-cache add --update nodejs nodejs-npm python3 sshpass && \ python3 -m pip install --no-cache-dir --src /src -cupper-constraints.txt \ -chttps://git.opnfv.org/functest/plain/upper-constraints.txt?h=$BRANCH \ doctor-tests && \ - npm -g install npm@latest && \ - # the next line must be uncommented as soon as promise is synced with pike - # (cd /src/promise/source && npm install) && \ rm -r upper-constraints.txt thirdparty-requirements.txt /src/fds/.git && \ apk del .build-deps COPY testcases.yaml /usr/lib/python2.7/site-packages/functest/ci/testcases.yaml |