From 10f5ed898e8ab29075df03aec801bf5c59e0307f Mon Sep 17 00:00:00 2001 From: Manpreet Singh Nehra Date: Sun, 28 Jan 2024 21:51:12 +0200 Subject: [PATCH] Remove helmfile --- deploy/Dockerfile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/deploy/Dockerfile b/deploy/Dockerfile index 5b3ebe7..2e639b8 100644 --- a/deploy/Dockerfile +++ b/deploy/Dockerfile @@ -10,12 +10,10 @@ LABEL org.opencontainers.image.description "CI Tools Image for CI PIpelines" LABEL org.opencontainers.image.base.name "alpine:latest" LABEL org.opencontainers.image.revision v2.6.2 LABEL build.date 20240122(YYYYMMDD) -ARG HELMFILE_VERSION=0.161.0 ARG GITLAB_TERRAFORM_VERSION=v1.7.1 ARG TARGETARCH WORKDIR /tmp -RUN echo $TARGETARCH ### Install utilities and packages RUN apk add curl git curl bash nodejs openssh-client ansible ansible-lint openssl idn2-utils @@ -25,9 +23,6 @@ RUN curl -L -s -o /usr/local/bin/kubectl "https://dl.k8s.io/release/$(curl -L -s ## Install Helm RUN curl -L -s https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash -## Install helmfile -RUN curl -L -s -o /tmp/helmfile.tar.gz https://github.com/helmfile/helmfile/releases/download/v${HELMFILE_VERSION}/helmfile_${HELMFILE_VERSION}_linux_${TARGETARCH}.tar.gz && tar xfz /tmp/helmfile.tar.gz && mv /tmp/helmfile /usr/local/bin/ && chmod +x /usr/local/bin/helmfile && rm /tmp/* - ##Install OpenTofu RUN echo '@testing https://dl-cdn.alpinelinux.org/alpine/edge/testing' >> /etc/apk/repositories && apk add opentofu@testing