Initial commit

This commit is contained in:
2026-05-07 13:58:22 +00:00
commit 419404dcb6
4 changed files with 68 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM alpine:latest
# 安裝必要的工具
RUN apk add --no-cache --no-check-certificate bash
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]