10 lines
365 B
Text
10 lines
365 B
Text
|
FROM openresty/openresty:alpine-fat
|
||
|
|
||
|
RUN /usr/local/openresty/luajit/bin/luarocks install lua-resty-http
|
||
|
RUN /usr/local/openresty/luajit/bin/luarocks install lua-resty-cookie
|
||
|
RUN /usr/local/openresty/luajit/bin/luarocks install lua-resty-iputils
|
||
|
|
||
|
COPY default.conf /etc/nginx/conf.d/default.conf
|
||
|
COPY env.main /etc/nginx/conf.d/env.main
|
||
|
COPY lua/* /opt/sitelen-tu/
|