Files
calculate-version/Dockerfile
T
jiantw83 276cd96b7d
CI / 1. BUILD (pull_request) Failing after 5s
CI / 2. TEST (pull_request) Has been skipped
CI / 3. RESULT (pull_request) Has been skipped
feat(calculate-version): 改為從 release API 計算版本並更新工作流程
2026-07-11 04:06:31 +00:00

11 lines
177 B
Docker

FROM node:lts-alpine
WORKDIR /action
COPY src/ /action/src/
COPY entrypoint.sh /action/entrypoint.sh
RUN chmod +x /action/entrypoint.sh
ENTRYPOINT ["/action/entrypoint.sh"]