diff --git a/ci/conda.Dockerfile b/ci/conda.Dockerfile index 4a3101a..5824545 100644 --- a/ci/conda.Dockerfile +++ b/ci/conda.Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM ubuntu:22.04 +FROM ubuntu:24.04 ENV DEBIAN_FRONTEND=noninteractive RUN apt update && apt install -y bzip2 curl python3 diff --git a/ci/devtools.Dockerfile b/ci/devtools.Dockerfile index 6363b95..f1c1bd9 100644 --- a/ci/devtools.Dockerfile +++ b/ci/devtools.Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM ubuntu:22.04 +FROM ubuntu:24.04 ENV DEBIAN_FRONTEND=noninteractive RUN apt update \ diff --git a/getting-started/Dockerfile b/getting-started/Dockerfile index 67a078a..f473988 100644 --- a/getting-started/Dockerfile +++ b/getting-started/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM ubuntu:22.04 AS base +FROM ubuntu:24.04 AS base # Create separate targets for each phase, this allows us to cache intermediate # stages when using Google Cloud Build, and makes the final deployment stage diff --git a/populate-bucket/Dockerfile b/populate-bucket/Dockerfile index adbbbe6..9f2d6a0 100644 --- a/populate-bucket/Dockerfile +++ b/populate-bucket/Dockerfile @@ -13,7 +13,7 @@ # limitations under the License. # We chose Ubuntu to build the image because we are familiar with it. -FROM ubuntu:22.04 AS base +FROM ubuntu:24.04 AS base # Create separate targets for each phase, this makes the final deployment stage # small as it contains only what is needed.