From a4532b2466815b0d3b2197c7270e6571b0977e4e Mon Sep 17 00:00:00 2001 From: Colin Adler Date: Thu, 13 Jul 2023 19:24:11 +0000 Subject: [PATCH] chore: fuzzy match alpine terraform version Old releases disappear, making the old versions not reproducible. --- scripts/Dockerfile.base | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Dockerfile.base b/scripts/Dockerfile.base index 60785b6e5d797..878f44adf707b 100644 --- a/scripts/Dockerfile.base +++ b/scripts/Dockerfile.base @@ -14,7 +14,7 @@ RUN apk add --no-cache \ openssh-client && \ # Use the edge repo, since Terraform doesn't seem to be backported to 3.18. apk add --no-cache --repository=https://dl-cdn.alpinelinux.org/alpine/edge/community \ - terraform=1.5.2-r0 && \ + terraform=~1.5 && \ addgroup \ -g 1000 \ coder && \