You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
NSQ Dockerfile depends on the latest alpine image. When building the NSQ Docker image, it produces the following error:
This error occurs because Alpine now includes /etc/nsswitch.conf in the image:
When the file exists, the condition [ ! -e /etc/nsswith.conf ] will return a status code of 1, failing the RUN and causing the build to fail.
Aside from the fact that Alpine now includes /etc/nsswith.conf, Golang has addressed the lack of /etc/nsswitch.conf since version 1.16. See this commit for reference:
NSQ Dockerfile depends on the latest alpine image. When building the NSQ Docker image, it produces the following error:
This error occurs because Alpine now includes
/etc/nsswitch.conf
in the image:When the file exists, the condition
[ ! -e /etc/nsswith.conf ]
will return a status code of 1, failing theRUN
and causing the build to fail.Aside from the fact that Alpine now includes
/etc/nsswith.conf
, Golang has addressed the lack of/etc/nsswitch.conf
since version 1.16. See this commit for reference:golang/go@c800222
The text was updated successfully, but these errors were encountered: