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:33:22 +0100 |
commit | 401481af61d98fb47de926b16e05a86e5fa1dac1 (patch) | |
tree | 98d0919664196f68c1354d22cc1aee986b54f3da /docker/Dockerfile | |
parent | e1915df5d0a647a03b36aa607420a41b6457cd74 (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/Dockerfile')
-rw-r--r-- | docker/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 336f7fef..c99dcc8e 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -3,7 +3,7 @@ FROM alpine:3.9 ARG BRANCH=stable/hunter ARG OPENSTACK_TAG=stable/rocky -RUN apk --no-cache add --update python py-pip bash git && \ +RUN apk --no-cache add --update python py-pip bash git mailcap && \ apk --no-cache add --virtual .build-deps --update \ python-dev build-base && \ git init /src/functest-xtesting && \ |