diff options
author | 2020-07-02 17:29:33 +0000 | |
---|---|---|
committer | 2020-07-02 17:29:33 +0000 | |
commit | 379251bdc901fbeb99291b0f13e24270f559dd62 (patch) | |
tree | eb032ce3ac3e81d0d966d6a31ebfe4ae38bdc903 /docker/tempest/Dockerfile | |
parent | 0b468d327dd440a8a9a66624fe53f07addeb070c (diff) | |
parent | 6c90a32c2516c7ce8d973a9cba41c580369e8c8b (diff) |
Merge "Apply "object storage: fix and cleanup header checks"" into stable/iruya
Diffstat (limited to 'docker/tempest/Dockerfile')
-rw-r--r-- | docker/tempest/Dockerfile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/docker/tempest/Dockerfile b/docker/tempest/Dockerfile index c8cb88bd9..d08399320 100644 --- a/docker/tempest/Dockerfile +++ b/docker/tempest/Dockerfile @@ -8,6 +8,7 @@ ARG RALLY_OPENSTACK_TAG=1.5.0 COPY Accept-custom-registered-endpoints.patch /tmp/Accept-custom-registered-endpoints.patch COPY Fixes-race-condition-in-test_add_remove_fixed_ip.patch /tmp/Fixes-race-condition-in-test_add_remove_fixed_ip.patch +COPY object-storage-fix-and-cleanup-header-checks.patch /tmp/object-storage-fix-and-cleanup-header-checks.patch COPY Switch-to-threading.Thread-for-Rally-tasks.patch /tmp/Switch-to-threading.Thread-for-Rally-tasks.patch RUN apk --no-cache add --virtual .build-deps --update \ python3-dev build-base linux-headers libffi-dev \ @@ -41,9 +42,11 @@ RUN apk --no-cache add --virtual .build-deps --update \ git config --global user.email "opnfv-tech-discuss@lists.opnfv.org" && \ git config --global user.name "Functest" && \ patch -p1 < /tmp/Accept-custom-registered-endpoints.patch && \ + patch -p1 < /tmp/object-storage-fix-and-cleanup-header-checks.patch && \ patch -p1 < /tmp/Fixes-race-condition-in-test_add_remove_fixed_ip.patch && \ git commit -a -m "Backport critical bugfixes" && \ rm ~/.gitconfig) && \ - rm /tmp/Accept-custom-registered-endpoints.patch && \ - rm /tmp/Fixes-race-condition-in-test_add_remove_fixed_ip.patch && \ + rm /tmp/Accept-custom-registered-endpoints.patch \ + /tmp/object-storage-fix-and-cleanup-header-checks.patch \ + /tmp/Fixes-race-condition-in-test_add_remove_fixed_ip.patch && \ apk del .build-deps |