Skip to content

Commit 0debfb1

Browse files
committed
fix: adding vault
Signed-off-by: Martin Buchleitner <[email protected]>
1 parent faedd9f commit 0debfb1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,15 @@ ARG YQ_VERSION=4.35.2
55
ARG TERRAFORM_DOCS_VERSION=latest
66
ARG TFLINT_VERSION=latest
77
ARG TFSEC_VERSION=latest
8+
ARG VAULT_VERSION=1.15.1
89

910
FROM docker.io/hashicorp/packer:$PACKER_VERSION as packer
1011
FROM docker.io/mondoo/client:$MONDOO_VERSION as mondoo
1112
FROM docker.io/mikefarah/yq:$YQ_VERSION as yq
1213
FROM quay.io/terraform-docs/terraform-docs:$TERRAFORM_DOCS_VERSION as tfdocs
1314
FROM ghcr.io/terraform-linters/tflint:$TFLINT_VERSION as tflint
1415
FROM docker.io/aquasec/tfsec-alpine:$TFSEC_VERSION as tfsec
16+
FROM docker.io/hashicorp/vault:${VAULT_VERSION} as vault
1517

1618
FROM docker.io/hashicorp/terraform:$TERRAFORM_VERSION as tf
1719

@@ -25,6 +27,7 @@ COPY --from=packer /bin/packer /usr/local/bin/packer
2527
COPY --from=tfdocs /usr/local/bin/terraform-docs /usr/local/bin/terraform-docs
2628
COPY --from=tflint /usr/local/bin/tflint /usr/local/bin/tflint
2729
COPY --from=tfsec /usr/bin/tfsec /usr/local/bin/tfsec
30+
COPY --from=vault /usr/local/bin/vault /usr/local/bin/vault
2831

2932
# hadolint ignore=DL3013
3033
RUN pip3 install --no-cache-dir azure-cli pre-commit

0 commit comments

Comments
 (0)