The Docker container puts seqcli on the path by linking it to /bin/seqcli, but since it's a .NET executable it then tries to find seqcli.dll alongside it, which doesn't in /bin.
Instead of linking the binary to /bin, we should just include the /seqsvr/Client directory on the path.
The Docker container puts
seqcli
on the path by linking it to/bin/seqcli
, but since it's a .NET executable it then tries to findseqcli.dll
alongside it, which doesn't in/bin
.Instead of linking the binary to
/bin
, we should just include the/seqsvr/Client
directory on the path.