This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
|
FROM openresty/openresty:1.19.9.1-focal
|
|
|
|
WORKDIR /etc/nginx
|
|
|
|
RUN luarocks install lua-resty-http && \
|
|
luarocks install hasher && \
|
|
luarocks install busted
|
|
|
|
COPY rbusted /etc/nginx/
|
|
|
|
CMD /etc/nginx/rbusted --verbose --pattern=spec /usr/local/openresty/site/lualib
|