blob: 4b0f0042f4e6c98030ff1a54cbb1b934133d6e1e (
plain)
1
2
3
4
5
6
7
8
9
|
FROM openresty/openresty:1.21.4.1-4-alpine
RUN apk add gettext
COPY server/resty /usr/local/openresty/lualib/resty/
COPY server/nginx* ./
COPY docker_entrypoint.sh .
COPY dist/frontend /usr/share/nginx/html
ENTRYPOINT ["/docker_entrypoint.sh"]
EXPOSE ${NGINX_PORT}
CMD ["nginx", "-g", "daemon off;"]
|