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 aecc9602d1
All checks were successful
ci/woodpecker/pr/woodpecker Pipeline was successful
ci/woodpecker/push/woodpecker Pipeline was successful
Update openresty/openresty digest to c959c00
2022-03-25 17:02:55 +00:00

15 lines
293 B
Docker

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