Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick Robinson <patrick.robinson@bertelsmann.de>
  • Loading branch information
autarchprinceps committed Dec 16, 2024
1 parent 4c90c86 commit 9d4e95f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ADD det-arch.sh /usr/local/bin
# base
RUN dnf upgrade -y && dnf install -y sed wget curl kubernetes-client git hub openssh-clients jq bc findutils unzip

ARG GH_CLI_VERSION=2.62.0
ARG GH_CLI_VERSION=2.63.2
RUN dnf install -y https://github.com/cli/cli/releases/download/v${GH_CLI_VERSION}/gh_${GH_CLI_VERSION}_linux_`det-arch.sh a r`.rpm

# github
Expand All @@ -16,13 +16,13 @@ ADD gh-scripts/* /usr/local/bin/
# custom
ADD custom-scripts/* /usr/local/bin/

ARG YQ_VERSION=4.44.5
ARG YQ_VERSION=4.44.6
RUN wget https://github.com/mikefarah/yq/releases/download/v$YQ_VERSION/yq_linux_`det-arch.sh a r` && chmod +x yq_linux_`det-arch.sh a r` && mv yq_linux_`det-arch.sh a r` /usr/bin/yq

# ARG VELERO_VERSION=1.14.0
# RUN wget https://github.com/vmware-tanzu/velero/releases/download/v$VELERO_VERSION/velero-v$VELERO_VERSION-linux-`det-arch.sh a r`.tar.gz && tar xf velero-v$VELERO_VERSION-linux-`det-arch.sh a r`.tar.gz && mv velero-v$VELERO_VERSION-linux-`det-arch.sh a r`/velero /usr/bin/velero && rm -rf velero-v$VELERO_VERSION-linux-`det-arch.sh a r`.tar.gz velero-v$VELERO_VERSION-linux-`det-arch.sh a r`

ARG BUILDX_VERSION=0.18.0
ARG BUILDX_VERSION=0.19.2
COPY --from=docker /usr/local/bin/docker /usr/bin/
RUN mkdir -p /usr/local/lib/docker/cli-plugins && \
curl -fsSL https://github.com/docker/buildx/releases/download/v$BUILDX_VERSION/buildx-v$BUILDX_VERSION.linux-`det-arch.sh a r` > /usr/local/lib/docker/cli-plugins/docker-buildx && \
Expand All @@ -47,7 +47,7 @@ ssh-keyscan -t rsa github.com >> ~/.ssh/known_hosts
ARG FLUX_VERSION=2.4.0
RUN wget https://github.com/fluxcd/flux2/releases/download/v$FLUX_VERSION/flux_${FLUX_VERSION}_linux_`det-arch.sh a r`.tar.gz && tar xf flux_${FLUX_VERSION}_linux_`det-arch.sh a r`.tar.gz && mv flux /usr/bin && rm -f flux_${FLUX_VERSION}_linux_`det-arch.sh a r`.tar.gz

ARG EKSCTL_VERSION=0.194.0
ARG EKSCTL_VERSION=0.199.0
RUN wget https://github.com/eksctl-io/eksctl/releases/download/v${EKSCTL_VERSION}/eksctl_Linux_`det-arch.sh a r`.tar.gz && tar xf eksctl_Linux_`det-arch.sh a r`.tar.gz && mv eksctl /usr/bin/ && rm -rf eksctl_Linux_`det-arch.sh a r`.tar.gz

# Session Manager
Expand Down

0 comments on commit 9d4e95f

Please sign in to comment.