From d68f660595a641b4c37a3fba9f1cc5edf97ef72a Mon Sep 17 00:00:00 2001 From: tebarius Date: Sun, 15 Feb 2026 14:17:02 +0100 Subject: [PATCH] add apt-get uppgrade to Dockerfile --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 1487c16..0563147 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,6 +10,7 @@ ENV PYTHONUNBUFFERED=1 ENV SERVER_PORT=19998 RUN apt-get update && \ + apt-get upgrade -y && \ if [ "$TARGETPLATFORM" = "linux/arm/v7" ] || [ "$TARGETPLATFORM" = "linux/386" ]; then \ apt-get install -y --no-install-recommends zlib1g-dev libjpeg-dev gcc; \ fi && \