123456789101112131415161718192021222324252627282930313233 |
- FROM centos/httpd
- RUN yum install -y lua-devel epel-release
- RUN yum update -y
- RUN yum install -y luarocks lua-socket pcre-devel openssl-devel
- RUN yum groupinstall -y 'Development Tools'
- RUN luarocks install redis-lua
- RUN luarocks install lua-cjson
- RUN luarocks install lrexlib-pcre
- ADD ./lua-openssl /lua-openssl
- RUN ls -l /lua-openssl
- RUN cd /lua-openssl && make && make install
- RUN rm -rf /lua-openssl
- RUN yum clean all
|