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 8729d44d28
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Update openresty/openresty:1.21.4.1-buster Docker digest to 4ed0217
2023-04-27 13:01:51 +00:00

15 lines
293 B
Docker

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