14 lines
337 B
Docker
14 lines
337 B
Docker
FROM openresty/openresty:focal
|
|
|
|
RUN rm -rf /usr/share/nginx/html/*
|
|
|
|
RUN /usr/local/openresty/luajit/bin/luarocks install luaxml
|
|
RUN /usr/local/openresty/luajit/bin/luarocks install lua-resty-http
|
|
|
|
COPY dist/nise-frontend /usr/share/nginx/html
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
|
|
EXPOSE 80
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|