Files
calculate-version/Dockerfile
2026-03-20 15:46:26 +08:00

11 lines
247 B
Docker

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