From 60f616a906a29ad46166a4a2ab640c3d9337f4a8 Mon Sep 17 00:00:00 2001 From: Darien Weems Date: Tue, 26 Aug 2025 16:12:05 -0400 Subject: [PATCH] wget install --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e54b95b..229f159 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,8 @@ RUN echo "**** install Python 3.12 ****" && \ apt-get install -y \ python3.12 \ python3.12-dev \ - python3.12-venv && \ + python3.12-venv \ + wget && \ echo "**** install yq ****" && \ YQ_VERSION="v4.43.1" && \ wget -O /usr/local/bin/yq "https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64" && \