feat: 改成 docker action

This commit is contained in:
Jeffery
2026-03-20 14:18:53 +08:00
parent 0d7cdd65ca
commit ea8b72ce8f
3 changed files with 29 additions and 27 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM alpine:3.21
RUN apk add --no-cache bash curl jq
COPY cleanup-releases.sh /cleanup-releases.sh
COPY cleanup-images.sh /cleanup-images.sh
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /cleanup-releases.sh /cleanup-images.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]