20 lines
351 B
Markdown
20 lines
351 B
Markdown
# 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"]
|
|
```
|
|
|