1 Star 0 Fork 2

hongzhang/ztgw

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Dockerfile 1.84 KB
一键复制 编辑 原始数据 按行查看 历史
ARG ENABLE_PROXY=true
FROM openresty/openresty:1.19.3.1-alpine-fat AS production-stage
COPY rockspec/ztgw-0.2-0.rockspec .
ARG ENABLE_PROXY=true
RUN set -x \
&& (test "${ENABLE_PROXY}" != "true" || /bin/sed -i 's,https://dl-cdn.alpinelinux.org,https://mirrors.aliyun.com,g' /etc/apk/repositories) \
&& apk add --no-cache --virtual .builddeps \
automake \
autoconf \
libtool \
pkgconfig \
cmake \
git \
&& mkdir ~/.luarocks \
&& luarocks config variables.OPENSSL_LIBDIR /usr/local/openresty/openssl/lib \
&& luarocks config variables.OPENSSL_INCDIR /usr/local/openresty/openssl/include \
&& luarocks install ztgw-0.2-0.rockspec --tree=/usr/local/ztgw/deps \
&& cp -v /usr/local/ztgw/deps/lib/luarocks/rocks-5.1/ztgw/0.2-0/bin/ztgw /usr/bin/ \
&& mv /usr/local/ztgw/deps/share/lua/5.1/ztgw /usr/local/ztgw \
&& apk del .builddeps build-base make unzip
FROM alpine:3.13 AS last-stage
ARG ENABLE_PROXY=true
# add runtime for ztgw
RUN set -x \
&& (test "${ENABLE_PROXY}" != "true" || /bin/sed -i 's,https://dl-cdn.alpinelinux.org,https://mirrors.aliyun.com,g' /etc/apk/repositories) \
&& apk add --no-cache bash libstdc++ curl tzdata
WORKDIR /usr/local/ztgw
COPY --from=production-stage /usr/local/openresty/ /usr/local/openresty/
COPY --from=production-stage /usr/local/ztgw/ /usr/local/ztgw/
COPY --from=production-stage /usr/bin/ztgw /usr/bin/ztgw
# forward request and error logs to docker log collector
RUN ln -sf /dev/stdout /usr/local/ztgw/logs/access.log \
&& ln -sf /dev/stderr /usr/local/ztgw/logs/error.log
ENV PATH=$PATH:/usr/local/openresty/luajit/bin:/usr/local/openresty/nginx/sbin:/usr/local/openresty/bin
EXPOSE 8080
EXPOSE 8443
CMD ["sh", "-c", "/usr/local/openresty/bin/openresty -p /usr/local/ztgw -g 'daemon off;'"]
STOPSIGNAL SIGQUIT
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hongzhangzhao/ztgw.git
git@gitee.com:hongzhangzhao/ztgw.git
hongzhangzhao
ztgw
ztgw
dev

搜索帮助