We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c638b7d commit 6a52176Copy full SHA for 6a52176
1 file changed
images/devenv-main-arm64/.devcontainer/Dockerfile
@@ -193,7 +193,14 @@ RUN apt install -y 1password-cli \
193
194
# terraform
195
RUN apt-get install -y -q terraform \
196
- && terraform version
+ && 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;
204
205
# vault
206
RUN apt-get install -y -q vault \
0 commit comments