You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
# NOTE: In scripts/Dockerfile.base we specifically install Terraform version 1.9.2.
179
179
# Installing the same version here to match.
180
180
RUN wget -O /tmp/terraform.zip"https://releases.hashicorp.com/terraform/1.9.2/terraform_1.9.2_linux_amd64.zip" && \
181
-
unzip /tmp/terraform.zip -d /usr/local/bin && \
182
-
rm -f /tmp/terraform.zip && \
183
-
chmod +x /usr/local/bin/terraform && \
184
-
terraform --version
181
+
unzip /tmp/terraform.zip -d /usr/local/bin && \
182
+
rm -f /tmp/terraform.zip && \
183
+
chmod +x /usr/local/bin/terraform && \
184
+
terraform --version
185
185
186
186
# Install the docker buildx component.
187
187
RUN DOCKER_BUILDX_VERSION=$(curl -s"https://api.github.com/repos/docker/buildx/releases/latest" | grep'"tag_name":' | sed -E's/.*"(v[^"]+)".*/\1/') && \
@@ -203,16 +203,17 @@ RUN LAZYGIT_VERSION=$(curl -s "https://api.github.com/repos/jesseduffield/lazygi
203
203
tar xf lazygit.tar.gz -C /usr/local/bin lazygit
204
204
205
205
# Install frontend utilities
206
-
RUN apt-get update && \
207
-
# Node.js (from nodesource) and Yarn (from yarnpkg)
208
-
apt-get install --yes --quiet \
209
-
nodejs yarn \
210
-
# Install browsers for e2e testing
211
-
google-chrome-stable microsoft-edge-beta && \
212
-
# Pre-install system dependencies that Playwright needs. npx doesn't work here
213
-
# for some reason. See https://github.com/microsoft/playwright-cli/issues/136