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 343cb773b3
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/pr/woodpecker Pipeline was successful
Update openresty/openresty digest to 24ecf9d
2022-06-30 19:01:43 +00:00

15 lines
293 B
Docker

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