Files
nexusphp/.docker/openresty/Dockerfile
T
2026-04-28 03:04:51 +07:00

11 lines
287 B
Docker

FROM openresty/openresty:alpine
# 安装基础依赖
RUN apk add --no-cache gettext bash curl openssl socat
# 拷贝 entrypoint
COPY .docker/openresty/entrypoint.sh /usr/local/bin/entrypoint.sh
RUN chmod +x /usr/local/bin/entrypoint.sh
CMD ["/bin/sh", "/usr/local/bin/entrypoint.sh"]