Files
zip/Dockerfile
T
2026-03-21 21:50:02 +08:00

11 lines
203 B
Docker

FROM alpine:latest
# 更新並安裝必要的工具
RUN apk update \
&& apk add --no-cache bash zip
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]