From 24ac50325d67bb019999f392fd79a0e0733b5469 Mon Sep 17 00:00:00 2001 From: Neko Ayaka Date: Mon, 24 Nov 2025 03:58:23 +0800 Subject: [PATCH] fix(ci): dockerfile missing python3-setuptools due to dnsutils removed since Python 3.12 --- apps/stage-web/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/stage-web/Dockerfile b/apps/stage-web/Dockerfile index cd6d047f6..a3dc64bd8 100644 --- a/apps/stage-web/Dockerfile +++ b/apps/stage-web/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /app RUN apt update && apt install -y ca-certificates curl RUN update-ca-certificates -RUN apt update && apt install -y build-essential python3 curl +RUN apt update && apt install -y build-essential python3 python3-setuptools curl RUN corepack enable