Compare commits

..

3 Commits

Author SHA1 Message Date
Palash Tyagi
53b4833ae9
Merge 659e93c27d8bdb88afec8452da45ca294e4942be into 2bc375f95009e600ba8d584a88a2b59da7c0e8ef 2025-05-05 21:57:47 +01:00
Palash Tyagi
659e93c27d testing runners 2025-05-05 21:57:43 +01:00
Palash Tyagi
f520f29f11 Add installation of GitHub CLI in Dockerfile 2025-05-05 21:55:56 +01:00

View File

@ -15,6 +15,12 @@ RUN apt install -y --no-install-recommends \
# Rust and Cargo dependencies # Rust and Cargo dependencies
gcc cmake gcc cmake
# Install GitHub CLI
RUN curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg \
&& chmod go+r /usr/share/keyrings/githubcli-archive-keyring.gpg \
&& echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | tee /etc/apt/sources.list.d/github-cli.list > /dev/null \
&& apt update -y && apt install -y gh \
&& rm -rf /var/lib/apt/lists/*
# Install Rust and Cargo # Install Rust and Cargo
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y