From 992cd13b9f00965b6dd9591fc5e3350719d84104 Mon Sep 17 00:00:00 2001
From: Lukas Grossar <lukas.grossar@adfinis.com>
Date: Fri, 29 Nov 2024 13:17:30 +0100
Subject: [PATCH] fix(Dockerfile.alpine): install wget to add support for
 building behind a proxy

The install-opentofu.sh script uses wget to download the binary by
default, but as the default wget binary in Alpine comes from busybox and
doesn't support HTTP proxies we're installing the actual wget binary to
work around that issue.

fixes #87

Signed-off-by: Lukas Grossar <lukas.grossar@adfinis.com>
---
 Dockerfile.alpine | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Dockerfile.alpine b/Dockerfile.alpine
index 65d8090..fe07385 100644
--- a/Dockerfile.alpine
+++ b/Dockerfile.alpine
@@ -4,6 +4,7 @@ FROM $BASE_IMAGE
 
 RUN apk add --no-cache \
   curl \
+  wget \
   gcompat \
   git \
   glab \
-- 
GitLab