From b8133d6a3578646d6a4f87377c3401d6eb4da9d2 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Thu, 9 Apr 2026 17:07:25 -0400 Subject: [PATCH] fix(docker): add wget to apt-get install wget is called immediately after apt-get install but was not included in the package list, causing the build to fail. Co-Authored-By: Claude Opus 4.6 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e0a6923f..ef6e4de4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM node:lts-trixie-slim AS base ARG USER_UID=1000 ARG USER_GID=1000 RUN apt-get update \ - && apt-get install -y --no-install-recommends ca-certificates curl git jq nano procps python3 python3-pip vim \ + && apt-get install -y --no-install-recommends ca-certificates curl git jq nano procps python3 python3-pip vim wget \ && mkdir -p -m 755 /etc/apt/keyrings \ && wget -nv -O/etc/apt/keyrings/githubcli-archive-keyring.gpg https://cli.github.com/packages/githubcli-archive-keyring.gpg \ && echo "20e0125d6f6e077a9ad46f03371bc26d90b04939fb95170f5a1905099cc6bcc0 /etc/apt/keyrings/githubcli-archive-keyring.gpg" | sha256sum -c - \