This commit is contained in:
parent
7e4e76ce19
commit
42fca1fc41
7 changed files with 146 additions and 1 deletions
14
Dockerfile
Normal file
14
Dockerfile
Normal file
|
@ -0,0 +1,14 @@
|
|||
FROM openresty/openresty:1.19.3.1-buster@sha256:1b970e585389f3cbbb4429c00ec6ada0082926ea0db9a2f3a9c105cbb4f437e4
|
||||
|
||||
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;"]
|
Reference in a new issue