diff options
Diffstat (limited to 'docker/cnf/Dockerfile')
-rw-r--r-- | docker/cnf/Dockerfile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/docker/cnf/Dockerfile b/docker/cnf/Dockerfile index 8dfb7239..ceaf5ba4 100644 --- a/docker/cnf/Dockerfile +++ b/docker/cnf/Dockerfile @@ -1,7 +1,7 @@ FROM opnfv/functest-kubernetes-core ARG CNF_TESTSUITE_TAG=v1.3.3 -ARG HELM_TAG=v3.3.1 +ARG HELM_TAG=v3.6.0 USER root RUN apk --no-cache add --update wget curl ncurses git yaml openssl zlib && \ @@ -25,9 +25,7 @@ RUN apk --no-cache add --update wget curl ncurses git yaml openssl zlib && \ (cd /src/cnf-testsuite && \ git fetch --tags https://github.com/cnti-testcatalog/testsuite.git $CNF_TESTSUITE_TAG && \ git checkout FETCH_HEAD && \ - wget https://patch-diff.githubusercontent.com/raw/cnti-testcatalog/testsuite/pull/2156.diff && \ - patch -p1 < 2156.diff && rm 2156.diff && \ - shards install && \ + shards install --without-development && \ crystal build --static src/cnf-testsuite.cr && \ cp cnf-testsuite /usr/local/bin/cnf-testsuite && rm -r lib) && \ chown -R xtesting: /src/cnf-testsuite && \ |