first commit
All checks were successful
/ CD > 計算版本號 (push) Successful in 1s
/ CD > 發布專案 (push) Successful in 2s

This commit is contained in:
2026-03-21 21:50:02 +08:00
commit f5036dbd15
4 changed files with 86 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM alpine:latest
# 更新並安裝必要的工具
RUN apk update \
&& apk add --no-cache bash zip
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]