This repository has been archived on 2023-06-17. You can view files and clone it, but cannot push or open issues or pull requests.
unifiedpush-gotify/Dockerfile

15 lines
293 B
Docker
Raw Permalink Normal View History

FROM openresty/openresty:1.21.4.1-buster@sha256:1613c0033c1fd69d04e49eb2bedc2538ebdee0ddc3de6620d27bcf9a04621846
2021-02-23 21:57:36 +00:00
COPY nginx.conf.template /
COPY entrypoint.sh /
ENV RESOLVER=1.1.1.1
EXPOSE 80
STOPSIGNAL SIGQUIT
ENTRYPOINT ["bash", "entrypoint.sh"]
CMD ["openresty", "-g", "daemon off;"]