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
Renovate Bot 598ac46c49
All checks were successful
continuous-integration/woodpecker the build was successful
Update openresty/openresty:1.19.9.1-buster Docker digest to c14dc64
2021-11-18 14:02:05 +00:00

15 lines
293 B
Docker

FROM openresty/openresty:1.19.9.1-buster@sha256:c14dc64891b295c665a27c57be6090fb65ae5bd002d006fb14835665408df909
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;"]