From f1bbf407d1ce6cfeda21bfebc6435eefcb65745a Mon Sep 17 00:00:00 2001 From: work00013 <141728856+work00013@users.noreply.github.com> Date: Thu, 18 Sep 2025 14:50:01 +0300 Subject: [PATCH] update ubuntu 22.04 distribution name --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bb30c7e..4dea9b7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ WORKDIR /build SHELL ["/bin/bash", "-o", "pipefail", "-c"] RUN curl -fsSL https://apt.releases.hashicorp.com/gpg | apt-key add - \ - && echo "deb [arch=amd64] https://apt.releases.hashicorp.com focal main" > /etc/apt/sources.list.d/tf.list \ + && echo "deb [arch=amd64] https://apt.releases.hashicorp.com jammy main" > /etc/apt/sources.list.d/tf.list \ && apt-get update \ && curl -sLO https://dl.k8s.io/release/v$KUBECTL_VERSION/bin/linux/amd64/kubectl && chmod 755 ./kubectl \ && curl -ksLO https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 && chmod 755 get-helm-3 \