Skip to content

Commit 9545e13

Browse files
committed
Add patch less and gh cli
1 parent d4c3b38 commit 9545e13

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Dockerfile

+8
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,17 @@ RUN set -x && \
3535
unzip \
3636
python3 \
3737
python3-pip \
38+
patch \
39+
less \
3840
lsb-release \
3941
udev && \
4042
\
43+
mkdir -p -m 755 /etc/apt/keyrings && \
44+
curl -Ls https://cli.github.com/packages/githubcli-archive-keyring.gpg -o /etc/apt/keyrings/githubcli-archive-keyring.gpg && \
45+
chmod go+r /etc/apt/keyrings/githubcli-archive-keyring.gpg && \
46+
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 && \
47+
apt-get update && apt-get install -y --no-install-recommends gh && \
48+
gh --version && \
4149
DOCKER_ARCH=$(/tmp/docker_arch.sh ${RUNNER_ARCH}) && \
4250
# Install Docker \
4351
curl -fsSL https://get.docker.com -o get-docker.sh && \

0 commit comments

Comments
 (0)