1e76690fa6
This reverts commit d3abfab99a.
11 lines
207 B
Docker
11 lines
207 B
Docker
FROM alpine:latest
|
|
|
|
# 更新並安裝必要的工具
|
|
RUN apk update \
|
|
&& apk add --no-cache curl jq bash
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"] |