openresty.dockerfile 263 B

1234567891011
  1. FROM openresty/openresty:1.17.8.2-focal
  2. ADD ./nginx.conf /openresty/
  3. ADD ./app.lua /openresty/
  4. WORKDIR /openresty
  5. RUN luarocks install lua-resty-template
  6. CMD export DBIP=`getent hosts tfb-database | awk '{ print $1 }'` && \
  7. nginx -c /openresty/nginx.conf