You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
516 B
13 lines
516 B
FROM quay.io/centos/centos:stream8
|
|
|
|
# renovate: datasource=github-releases depName=cli/cli
|
|
ARG GH_VERSION=2.3.0
|
|
|
|
RUN dnf install -y git curl tar gzip shadow-utils \
|
|
&& curl -sLo /tmp/gh.tgz https://github.com/cli/cli/releases/download/v${GH_VERSION}/gh_${GH_VERSION}_linux_amd64.tar.gz \
|
|
&& tar -xf /tmp/gh.tgz -C /tmp \
|
|
&& mv /tmp/gh_${GH_VERSION}_linux_amd64/bin/gh /usr/local/bin \
|
|
&& rm -rf /tmp/gh_${GH_VERSION}_linux_amd64 /tmp/gh.tgz \
|
|
&& dnf clean all
|
|
|
|
RUN git config --global advice.detachedHead false
|
|
|