docs(README 與文件草稿): 重整說明與草稿內容
CI / 1. BUILD (pull_request) Successful in 1s
CI / 2. TEST (pull_request) Successful in 3m32s
CI / 3. RESULT (pull_request) Has been skipped

This commit is contained in:
2026-07-11 10:00:34 +00:00
parent 1ed40a6b04
commit 24ed2ab164
6 changed files with 407 additions and 14 deletions
+19
View File
@@ -0,0 +1,19 @@
# Dockerfile draft
<!--
Purpose: 建立 action 執行映像 / build the action runtime image
Timestamp: 2026/07/11 17:23:33 (Asia/Taipei)
-->
```dockerfile
# 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"]
```