From 0332ef07795b5ef9661981a91b601c829e3832f3 Mon Sep 17 00:00:00 2001 From: Beth Skurrie Date: Wed, 12 Jun 2019 17:48:14 +1000 Subject: [PATCH] feat: upgrade busybox to 1.30.0 --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 6a3b5f56..b1652bc4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,8 @@ FROM ruby:2.6-alpine +# CVE-2019-5747 Can remove when base image includes busybox version 1.30.0 +RUN wget https://busybox.net/downloads/binaries/1.30.0-i686/busybox && chmod +x busybox && mv busybox /bin/busybox + # Installation path ENV HOME=/pact_broker