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 db65613c2d
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Update openresty/openresty:1.21.4.1-buster Docker digest to 9157ab0
2023-02-21 19:01:36 +00:00

15 lines
293 B
Docker

FROM openresty/openresty:1.21.4.1-buster@sha256:9157ab05009bd34d17974aa6430aa484664d267797ca5181b94eee0d0bbff632
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;"]