From 5c97ceada75de9fd8b6d947629cd68107f91382e Mon Sep 17 00:00:00 2001 From: Jeffery Date: Thu, 26 Mar 2026 09:31:10 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=AE=89=E8=A3=9D=E7=BC=BA=E5=B0=91?= =?UTF-8?q?=E7=9A=84=E5=B7=A5=E5=85=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 68cca64..74269c7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,11 @@ FROM ubuntu:latest - + +# 更新並安裝必要的工具後清理暫存檔案以減小映像檔大小 +RUN apt update \ + && apt install -y curl \ + && apt clean \ + && rm -rf /var/lib/apt/lists/* + COPY entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh -- 2.48.1