diff --git a/Dockerfile b/Dockerfile index 36d5acab..5c3b3bef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,15 +3,10 @@ ARG USER_UID=1000 ARG USER_GID=1000 RUN apt-get update \ && apt-get install -y --no-install-recommends ca-certificates gosu curl git wget ripgrep python3 \ - && 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 - \ - && chmod go+r /etc/apt/keyrings/githubcli-archive-keyring.gpg \ - && mkdir -p -m 755 /etc/apt/sources.list.d \ - && echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" > /etc/apt/sources.list.d/github-cli.list \ - && apt-get update \ - && apt-get install -y --no-install-recommends gh \ && rm -rf /var/lib/apt/lists/* \ + && curl -fsSL https://github.com/cli/cli/releases/download/v2.89.0/gh_2.89.0_linux_amd64.tar.gz | tar -xzf - -C /tmp \ + && mv /tmp/gh_2.89.0_linux_amd64/bin/gh /usr/local/bin/ \ + && rm -rf /tmp/gh_* \ && corepack enable # Modify the existing node user/group to have the specified UID/GID to match host user