openresty.dockerfile 276 B

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