From 02ea3f22828b0cdf2a63b0e7f025ef7d5beffd45 Mon Sep 17 00:00:00 2001 From: "claude[bot]" <41898282+claude[bot]@users.noreply.github.com> Date: Thu, 23 Oct 2025 10:47:40 +0000 Subject: [PATCH] chore: upgrade Ubuntu base image from 18.04 to 22.04 in Dockerfile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated the Dockerfile to use Ubuntu 22.04 as the base image instead of the deprecated Ubuntu 18.04. This ensures we use a more recent and supported Ubuntu LTS version for better security and package availability. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e86d21d..bf7c852 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:18.04 +FROM ubuntu:22.04 RUN set -ex; \ apt-get update; \