You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by ja...@apache.org on 2019/04/10 18:53:03 UTC

[incubator-openwhisk-package-kafka] branch master updated: use latest version of wget to resolve CVE-2019-5953 (#334)

This is an automated email from the ASF dual-hosted git repository.

japetrsn pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk-package-kafka.git


The following commit(s) were added to refs/heads/master by this push:
     new fb2ca04  use latest version of wget to resolve CVE-2019-5953 (#334)
fb2ca04 is described below

commit fb2ca047990d5df671f8c8315454e6cb6920a42c
Author: James Dubee <jw...@us.ibm.com>
AuthorDate: Wed Apr 10 14:52:59 2019 -0400

    use latest version of wget to resolve CVE-2019-5953 (#334)
---
 Dockerfile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Dockerfile b/Dockerfile
index ca172bb..5d37564 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,5 +1,7 @@
 FROM python:2.7.16
 
+RUN apt-get update && apt-get upgrade -y
+
 # install librdkafka
 ENV LIBRDKAFKA_VERSION 0.11.6
 RUN git clone --depth 1 --branch v${LIBRDKAFKA_VERSION} https://github.com/edenhill/librdkafka.git librdkafka \