feat: 重構清理舊版成品

This commit is contained in:
2026-03-21 10:32:21 +08:00
parent cd5480b334
commit e3f3743950
7 changed files with 108 additions and 446 deletions

View File

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