feat: 重構計算版本號

This commit is contained in:
Jeffery
2026-03-20 15:46:26 +08:00
parent 95c810567d
commit a2ab02b8c1
4 changed files with 90 additions and 181 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM alpine:latest
# 更新並安裝必要的工具後清理暫存檔案以減小映像檔大小
RUN apk update \
&& apk add --no-cache curl jq
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]