nise/nise-frontend/Dockerfile
2024-02-25 23:49:38 +01:00

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;"]