Hi folks
We use the docker image with Dockerfile like so:
ARG OPENRESTY_VERSION
FROM openresty/openresty:${OPENRESTY_VERSION}
RUN opm get ledgetech/lua-resty-http \
openresty/lua-resty-limit-traffic
and today started getting an issue in our Gitlab CI pipelines with:
failed to solve: process "/bin/sh -c opm get ledgetech/lua-resty-http openresty/lua-resty-limit-traffic" did not complete successfully: exit code: 6
Debugging a little we started to think it was dns
vs
nslookup
npmjs.comServer: 127.0.0.53
Address: 127.0.0.53#53
Non-authoritative answer:
Name:
npmjs.comAddress: 104.16.92.83
Name:
npmjs.comAddress: 104.16.93.83
Name:
npmjs.comAddress: 2606:4700::6810:5c53
Name:
npmjs.comAddress: 2606:4700::6810:5d53
Though I noticed the main website seems okay.
Our build still only working on our workstations because of docker cache.
Is there anybody else having issues today?