diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-11-16 16:21:44 +0100 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-11-16 16:31:15 +0100 |
commit | e6f8088f2adebbc649591681a1925591f00e3a4b (patch) | |
tree | adf546c4621fc3f3823ad87b08d92661f87ad609 /docker | |
parent | 7e028eed71ded1355a251e770300e54706829c63 (diff) |
Add ContentType when publishing artifacts
The default value 'application/octet-stream' is mostly
incorrect and forces downloading all links.
https://build.opnfv.org/ci/job/functest-opnfv-functest-healthcheck-hunter-connection_check-run/436/console
Change-Id: Ia680654f5e9f67154504264bc380f0a8d6a74d85
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit e2e7dbe185a552b21315063dbbed8ac4f40f309d)
Diffstat (limited to 'docker')
-rw-r--r-- | docker/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index a1c635d9..0b139095 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -3,7 +3,7 @@ FROM alpine:3.10 ARG BRANCH=stable/jerma ARG OPENSTACK_TAG=stable/train -RUN apk --no-cache add --update python3 bash git && \ +RUN apk --no-cache add --update python3 bash git mailcap && \ apk --no-cache add --virtual .build-deps --update \ python3-dev build-base && \ git init /src/functest-xtesting && \ |