From 2f0a1b72c1a74d9d4e04ba031517dedb2cdc766b Mon Sep 17 00:00:00 2001 From: Jeffery Date: Thu, 25 Jun 2026 10:57:32 +0000 Subject: [PATCH] =?UTF-8?q?style(Dockerfile):=20=E6=95=B4=E7=90=86?= =?UTF-8?q?=E7=A9=BA=E7=99=BD=E8=88=87=E6=AA=94=E5=B0=BE=E6=8F=9B=E8=A1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index dc04252..0a80edf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,8 +2,9 @@ FROM alpine:latest # 安裝必要的工具 RUN apk add --no-cache --no-check-certificate bash curl jq - + COPY entrypoint.sh /entrypoint.sh + RUN chmod +x /entrypoint.sh -ENTRYPOINT ["/entrypoint.sh"] \ No newline at end of file +ENTRYPOINT ["/entrypoint.sh"]