This commit is contained in:
Karol Wypchlo 2021-06-23 17:45:51 +02:00
parent 7f7b03757d
commit 36b93a85dd
1 changed files with 2 additions and 2 deletions

View File

@ -23,8 +23,8 @@ ENV NODE_ENV production
# 3. start crond in the background
# 4. start the health-check api service
CMD [ "sh", "-c", \
"echo -e \"nameserver 127.0.0.1\n$(cat /etc/resolv.conf)\noptions attempts:5\noptions timeout:30\" > /etc/resolv.conf ; \
dnsmasq --no-resolv --log-queries --log-facility=/var/log/dnsmasq.log --address=/siasky.net/$(node src/whatismyip.js) ; \
"echo -e \"nameserver 127.0.0.1\noptions ndots:0\" > /etc/resolv.conf ; \
dnsmasq --no-resolv --log-queries --log-facility=/var/log/dnsmasq.log --address=/siasky.net/$(node src/whatismyip.js) --server=127.0.0.11 ; \
crond ; \
node --max-http-header-size=64000 src/index.js" \
]