Files
cleanup-release/Dockerfile
2026-03-25 05:43:24 +00:00

10 lines
201 B
Docker

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"]