Skip to content

Commit 6a52176

Browse files
Add Terragrunt installation to Dockerfile
1 parent c638b7d commit 6a52176

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

images/devenv-main-arm64/.devcontainer/Dockerfile

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,14 @@ RUN apt install -y 1password-cli \
193193

194194
# terraform
195195
RUN apt-get install -y -q terraform \
196-
&& terraform version
196+
&& terraform version;
197+
198+
# terragrunt
199+
RUN iwr https://github.com/gruntwork-io/terragrunt/releases/download/alpha-2026031001/terragrunt_linux_arm64.tar.gz -outfile terragrunt.tar.gz \
200+
&& tar xzf terragrunt.tar.gz \
201+
&& chmod +x ./terragrunt_linux_arm64 \
202+
&& mv ./terragrunt_linux_arm64 /usr/local/bin/terragrunt \
203+
&& terragrunt --version;
197204

198205
# vault
199206
RUN apt-get install -y -q vault \

0 commit comments

Comments
 (0)