Skip to content

Commit a39d96e

Browse files
committed
update
1 parent 1d43b39 commit a39d96e

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM debian:trixie@sha256:01a723bf5bfb21b9dda0c9a33e0538106e4d02cce8f557e118dd61259553d598 as builder
1+
FROM debian:trixie@sha256:8f6a88feef3ed01a300dafb87f208977f39dccda1fd120e878129463f7fa3b8f as builder
22
ARG DEBIAN_FRONTEND=noninteractive
33
# renovate: datasource=github-releases depName=hashicorp-vault-cli packageName=hashicorp/vault
4-
ARG VAULT_VERSION=1.18.3
4+
ARG VAULT_VERSION=1.21.1
55
RUN apt-get update && apt-get install -y wget unzip
66
RUN wget -q https://releases.hashicorp.com/vault/${VAULT_VERSION}/vault_${VAULT_VERSION}_linux_amd64.zip
77
RUN unzip vault_${VAULT_VERSION}_linux_amd64.zip
88

9-
FROM alpine:latest@sha256:4b7ce07002c69e8f3d704a9c5d6fd3053be500b7f1c69fc0d80990c2ad8dd412 as certs
9+
FROM alpine:3.22@sha256:4b7ce07002c69e8f3d704a9c5d6fd3053be500b7f1c69fc0d80990c2ad8dd412 as certs
1010
RUN apk --update add ca-certificates
1111

1212
FROM scratch

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ resource "docker_registry_image" "vault" {
9292
name = local.image_name
9393
depends_on = [docker_image.vault, google_artifact_registry_repository.private]
9494
triggers = {
95-
rebuild = docker_image.vault.image_id
95+
dir_sha1 = sha1(join("", [for f in toset(["${path.module}/Dockerfile", "${path.module}/vault-server.hcl"]) : filesha1(f)]))
9696
}
9797
}
9898

0 commit comments

Comments
 (0)