From 2478801754955b69b1aab409b177db9243c45c3a Mon Sep 17 00:00:00 2001 From: Piotr Sierkin Date: Tue, 12 Mar 2024 12:01:25 +0100 Subject: [PATCH] chore: test --- app/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Dockerfile b/app/Dockerfile index 8516684..8a53a49 100644 --- a/app/Dockerfile +++ b/app/Dockerfile @@ -55,13 +55,13 @@ RUN curl -LOs https://github.com/transcend-io/terragrunt-atlantis-config/release rm -rf terragrunt-atlantis-config_${TG_ATLANTIS_VERSION}_linux_amd64* # Download and install asdf, create .profile and source asdf inside -USER atlantis RUN git clone --quiet https://github.com/asdf-vm/asdf.git /home/atlantis/.asdf --branch ${ASDF_VERSION} && \ echo '. /home/atlantis/.asdf/asdf.sh' >> /home/atlantis/.profile && \ chown atlantis.atlantis /home/atlantis/.profile && \ chmod u+rw /home/atlantis/.profile # Install all needed plugins +USER atlantis RUN asdf plugin-add kubectl && \ asdf plugin-add helm && \ asdf plugin-add terragrunt && \