Initial commit

This commit is contained in:
2026-05-15 01:23:33 +00:00
commit c7584316ba
5 changed files with 88 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"]