File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -19,10 +19,10 @@ var (
19
19
// TerraformVersion is the version of Terraform used internally
20
20
// when Terraform is not available on the system.
21
21
// NOTE: Keep this in sync with the version in scripts/Dockerfile.base.
22
- TerraformVersion = version .Must (version .NewVersion ("1.3.4 " ))
22
+ TerraformVersion = version .Must (version .NewVersion ("1.4.6 " ))
23
23
24
24
minTerraformVersion = version .Must (version .NewVersion ("1.1.0" ))
25
- maxTerraformVersion = version .Must (version .NewVersion ("1.3 .9" ))
25
+ maxTerraformVersion = version .Must (version .NewVersion ("1.4 .9" ))
26
26
27
27
terraformMinorVersionMismatch = xerrors .New ("Terraform binary minor version mismatch." )
28
28
)
Original file line number Diff line number Diff line change 1
1
# This is the base image used for Coder images. It's a multi-arch image that is
2
2
# built in depot.dev for all supported architectures. Since it's built on real
3
3
# hardware and not cross-compiled, it can have "RUN" commands.
4
- FROM alpine:latest
4
+ FROM alpine:3.18
5
5
6
6
# We use a single RUN command to reduce the number of layers in the image.
7
7
# NOTE: Keep the Terraform version in sync with minTerraformVersion and
@@ -12,7 +12,7 @@ RUN apk add --no-cache \
12
12
bash \
13
13
git \
14
14
openssh-client \
15
- terraform=1.3.4-r4 && \
15
+ terraform=1.4.6-r1 && \
16
16
addgroup \
17
17
-g 1000 \
18
18
coder && \
You can’t perform that action at this time.
0 commit comments