github.com/argoproj/argo-cd/v2@v2.10.9/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  
     9  RUN git config --system user.name "ArgoCD Test User"
    10  RUN git config --system user.email "noreply@example.com"
    11  
    12  RUN mkdir -p /go/pkg && chmod 777 /go/pkg
    13  
    14  RUN mkdir -p /home/user/.cache && chmod 777 /home/user/.cache
    15  
    16  RUN apt-get clean && \
    17      rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*