There was an error while loading. Please reload this page.
1 parent bc14769 commit 76035a2Copy full SHA for 76035a2
1 file changed
Dockerfile
@@ -1,11 +1,13 @@
1
+FROM hashicorp/terraform:1.15 AS terraform
2
# Instead of building from scratch pull my other docker image
3
FROM devopsinfra/docker-terragrunt:slim-latest AS builder
4
5
# Use a clean tiny image to store artifacts in
6
FROM alpine:3.23.4
7
8
# Copy all needed files
-COPY --from=builder /usr/bin/terraform /usr/bin/format-hcl /usr/bin/fmt.sh /usr/bin/terragrunt-fmt.sh /usr/bin/
9
+COPY --from=terraform /usr/bin/terraform /usr/bin/terraform
10
+COPY --from=builder /usr/bin/format-hcl /usr/bin/fmt.sh /usr/bin/terragrunt-fmt.sh /usr/bin/
11
COPY entrypoint.sh /
12
COPY alpine-packages.txt /tmp/alpine-packages.txt
13
0 commit comments