Files
health-check/Dockerfile
2026-03-25 22:11:56 +08:00

10 lines
204 B
Docker

FROM alpine:latest
# 安裝必要的工具
RUN apk add --no-cache --no-check-certificate bash curl sleep
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]