diff --git a/CHANGELOG.md b/CHANGELOG.md index 8058ca39..df7470ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ Changes: * Dependency updates: * Docker UBI image `ubi8/ubi-minimal` 8.8-1072.1697626218 => 8.9-1029 - * Docker alpine version 3.18.4 => 3.18.5 + * Docker alpine version 3.18.4 => 3.19.0 * `k8s.io/api` v0.28.3 => v0.28.4 * `k8s.io/apimachinery` v0.28.3 => v0.28.4 * `k8s.io/client-go` v0.28.3 => v0.28.4 diff --git a/Dockerfile b/Dockerfile index 53b7d3a1..31a91fa9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ # `default` is the production docker image which cannot be built locally. # For local dev and testing purposes, please build and use the `dev` docker image. -FROM docker.mirror.hashicorp.services/alpine:3.18.5 as dev +FROM docker.mirror.hashicorp.services/alpine:3.19.0 as dev RUN addgroup vault && \ adduser -S -G vault vault @@ -24,7 +24,7 @@ USER vault ENTRYPOINT ["/vault-k8s"] # This target creates a production release image for the project. -FROM docker.mirror.hashicorp.services/alpine:3.18.5 as default +FROM docker.mirror.hashicorp.services/alpine:3.19.0 as default # PRODUCT_VERSION is the tag built, e.g. v0.1.0 # PRODUCT_REVISION is the git hash built