Initial commit

This commit is contained in:
2026-06-24 09:44:16 +00:00
commit 45412fb3d5
4 changed files with 69 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"]