From b672219df43966105ddfdd733a3e539ff00fe56a Mon Sep 17 00:00:00 2001 From: "haibiao.xiao" Date: Thu, 17 Mar 2022 18:09:39 +0800 Subject: [PATCH] fix wget: "error getting response" problem While BASEIMAGE is alpine and the default wget doesn't work with HTTPS. We need update both openssl and wget. Signed-off-by: haibiao.xiao --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index efe4dd798..af8acdce4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,8 +5,11 @@ FROM BASEIMAGE AS build COPY qemu-QEMUARCH-static /usr/bin/ # device-mapper is needed for snapshot functionalities +# openssl and wget needes to be updated. RUN apk add --no-cache \ - device-mapper + device-mapper \ + openssl \ + wget # Download the Firecracker binary from Github ARG FIRECRACKER_VERSION