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 3b4aca7415
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/pr/woodpecker Pipeline was successful
Update dependency openresty/openresty to v1.21.4.1
2022-05-25 16:01:30 +00:00

15 lines
293 B
Docker

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