2025-04-27 21:09:42 +07:00
|
|
|
FROM openresty/openresty:alpine
|
|
|
|
|
|
|
|
|
|
# 安装基础依赖
|
2025-04-28 20:21:32 +07:00
|
|
|
RUN apk add --no-cache gettext bash curl openssl socat
|
2025-04-27 21:09:42 +07:00
|
|
|
|
|
|
|
|
# 拷贝 entrypoint
|
|
|
|
|
COPY ./entrypoint.sh /usr/local/bin/entrypoint.sh
|
|
|
|
|
RUN chmod +x /usr/local/bin/entrypoint.sh
|
|
|
|
|
|
|
|
|
|
CMD ["/bin/sh", "/usr/local/bin/entrypoint.sh"]
|