diff --git a/build-support/docker/Verify-Release-Amazon.dockerfile b/build-support/docker/Verify-Release-Amazon.dockerfile index 5242ba0954d1d..591b234c3b7cc 100644 --- a/build-support/docker/Verify-Release-Amazon.dockerfile +++ b/build-support/docker/Verify-Release-Amazon.dockerfile @@ -7,4 +7,4 @@ RUN yum-config-manager --add-repo https://rpm.releases.hashicorp.com/AmazonLinux ARG PACKAGE=consul \ ARG VERSION \ ARG SUFFIX=1 -RUN yum install -y ${PACKAGE}-${VERSION}-${SUFFIX} \ No newline at end of file +RUN yum install -y ${PACKAGE}-${VERSION}-${SUFFIX} diff --git a/build-support/docker/Verify-Release-Fedora.dockerfile b/build-support/docker/Verify-Release-Fedora.dockerfile index 8fcdedfda1197..601751a911825 100644 --- a/build-support/docker/Verify-Release-Fedora.dockerfile +++ b/build-support/docker/Verify-Release-Fedora.dockerfile @@ -1,10 +1,10 @@ # Copyright (c) HashiCorp, Inc. # SPDX-License-Identifier: MPL-2.0 -FROM fedora:36 +FROM fedora:latest RUN dnf install -y dnf-plugins-core RUN dnf config-manager --add-repo https://rpm.releases.hashicorp.com/fedora/hashicorp.repo ARG PACKAGE=consul \ ARG VERSION \ ARG SUFFIX=1 -RUN dnf install -y ${PACKAGE}-${VERSION}-${SUFFIX} \ No newline at end of file +RUN dnf install -y ${PACKAGE}-${VERSION}-${SUFFIX} diff --git a/build-support/docker/Verify-Release-Ubuntu.dockerfile b/build-support/docker/Verify-Release-Ubuntu.dockerfile index 5bb7847e25fc1..ddeffc40c5f64 100644 --- a/build-support/docker/Verify-Release-Ubuntu.dockerfile +++ b/build-support/docker/Verify-Release-Ubuntu.dockerfile @@ -1,7 +1,7 @@ # Copyright (c) HashiCorp, Inc. # SPDX-License-Identifier: MPL-2.0 -FROM ubuntu:22.04 +FROM ubuntu:latest RUN apt update && apt install -y software-properties-common curl RUN curl -fsSL https://apt.releases.hashicorp.com/gpg | apt-key add - ARG TARGETARCH=amd64 @@ -9,4 +9,4 @@ RUN apt-add-repository "deb [arch=${TARGETARCH}] https://apt.releases.hashicorp. ARG PACKAGE=consul \ ARG VERSION \ ARG SUFFIX=1 -RUN apt-get update && apt-get install -y ${PACKAGE}=${VERSION}-${SUFFIX} \ No newline at end of file +RUN apt-get update && apt-get install -y ${PACKAGE}=${VERSION}-${SUFFIX}