From 8bb885ada5edee4256860d5b469883cbe1e4d543 Mon Sep 17 00:00:00 2001 From: "Rustam @SecondFry Gubaydullin" Date: Thu, 13 Nov 2025 07:23:20 +0300 Subject: [PATCH] Upgrade base image to Ubuntu 24.04 and Python version --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a908d14..209e81f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ -FROM ubuntu:22.04 +FROM ubuntu:24.04 RUN apt-get update && apt-get install --no-install-recommends -y python3 python3-uvloop python3-cryptography python3-socks libcap2-bin ca-certificates && rm -rf /var/lib/apt/lists/* -RUN setcap cap_net_bind_service=+ep /usr/bin/python3.10 +RUN setcap cap_net_bind_service=+ep /usr/bin/python3.12 RUN useradd tgproxy -u 10000