Files
calculate-version/Dockerfile
Jeffery dfb9608d3d Revert "feat: 安裝 bash 套件"
This reverts commit b6dabdbbf8.
2026-03-20 16:07:53 +08:00

11 lines
235 B
Docker

FROM alpine:latest
# 更新並安裝必要的工具
RUN apk update \
&& apk add --no-cache curl jq
COPY entrypoint.sh /entrypoint.sh
RUN sed -i 's/\r//' /entrypoint.sh && chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]