github.com/argoproj/argo-cd@v1.8.7/hack/Dockerfile.dev-tools (about) 1 FROM argocd-test-tools:latest as base 2 3 RUN ./install.sh codegen-tools 4 RUN ./install.sh codegen-go-tools 5 RUN ./install.sh lint-tools 6 7 RUN mkdir -p /home/user && chmod 777 /home/user 8 RUN HELM_HOME=/home/user/.helm helm2 init --client-only 9 10 RUN git config --system user.name "ArgoCD Test User" 11 RUN git config --system user.email "noreply@example.com" 12 13 RUN mkdir -p /go/pkg && chmod 777 /go/pkg 14 15 RUN mkdir -p /home/user/.cache && chmod 777 /home/user/.cache 16 17 RUN apt-get clean && \ 18 rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*