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:23:15 +0100 |
commit | e2e7dbe185a552b21315063dbbed8ac4f40f309d (patch) | |
tree | 7c66245213c1224ed76c4dae8c6d7aebb057b123 /docker/Dockerfile | |
parent | a48c62165923be6a37aaff5d54918dbe9cb6ff58 (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>
Diffstat (limited to 'docker/Dockerfile')
-rw-r--r-- | docker/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 81b58299..8c1e00dd 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -3,7 +3,7 @@ FROM alpine:3.10 ARG BRANCH=master ARG OPENSTACK_TAG=master -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 && \ |