Initial commit

This commit is contained in:
2026-06-25 08:51:03 +00:00
commit 6cdbcff681
5 changed files with 77 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"]