Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions dev/image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,9 @@ RUN sudo install-packages shellcheck \
&& sudo python3 -m pip install pre-commit

# gh (Github CLI) binary:
RUN cd /usr/bin && curl -fsSL https://github.com/cli/cli/releases/download/v2.35.0/gh_2.35.0_linux_amd64.tar.gz \
| sudo tar xzv --strip-components=2 gh_2.35.0_linux_amd64/bin/gh
ARG GH_VERSION="2.74.1"
RUN cd /usr/bin && curl -fsSL https://github.com/cli/cli/releases/download/v${GH_VERSION}/gh_${GH_VERSION}_linux_amd64.tar.gz \
| sudo tar xzv --strip-components=2 gh_${GH_VERSION}_linux_amd64/bin/gh

# Install observability-related binaries
ARG PROM_VERSION="2.36.0"
Expand Down
Loading