-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
35 lines (28 loc) · 1.46 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
ARG ARGOCD_VERSION=1.7.11
FROM argoproj/argocd:v${ARGOCD_VERSION}
ARG HELM_VERSION=3.5.1
ARG HELM_SECRETS_VERSION=3.4.1
ARG SOPS_VERSION=3.6.1
USER root
# Install dependencies
RUN apt-get update \
&& apt-get install -y curl sudo wget \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
ADD helm /usr/local/bin/
# Install Helm3
RUN wget -qO- https://get.helm.sh/helm-v${HELM_VERSION}-linux-amd64.tar.gz | tar -xzO linux-amd64/helm > /usr/local/bin/helm.bin \
&& chmod +x /usr/local/bin/helm.bin
# Install recent sops
RUN curl -o /usr/local/bin/sops -L https://github.com/mozilla/sops/releases/download/v${SOPS_VERSION}/sops-v${SOPS_VERSION}.linux && chmod +x /usr/local/bin/sops
# Install helm-secrets
RUN helm plugin install https://github.com/jkroepke/helm-secrets --version ${HELM_SECRETS_VERSION} \
&& mkdir -p /home/argocd/.local/share/helm/plugins/helm-secrets \
&& mv /root/.local/share/helm/plugins/helm-secrets /home/argocd/.local/share/helm/plugins/helm-secrets \
&& mkdir -p /home/argocd/.cache/helm/plugins/https-github.com-jkroepke-helm-secrets \
&& mv /root/.cache/helm/plugins/https-github.com-jkroepke-helm-secrets /home/argocd/.cache/helm/plugins/ \
&& ln -fs /home/argocd/.cache/helm/plugins/https-github.com-jkroepke-helm-secrets /home/argocd/.local/share/helm/plugins/ \
&& chown -R argocd:argocd /home/argocd/.local \
&& chown -R argocd:argocd /home/argocd/.cache \
&& SUDO_FORCE_REMOVE=yes apt-get remove sudo -y
USER argocd