-
Our setup is similar to what is shown here and works for x86 processors only. But we would like to extend this Docker implementation so that it works for ARM-based processors. The build will succeed, but since SQL client tools aren't available on the ARM64 platform, we are stuck and unable to run sqlcmd to initialize our database. The obvious error we get in Docker is:
which is supposedly coming from this line of code. We are relatively new to MSSQL and Docker, so my simple question is, how can I use go-sqlcmd so that it replaces the one from Additional resources |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
We regularly release arm64 binary of sqlcmd under releases. |
Beta Was this translation helpful? Give feedback.
-
After some further digging, I'm downloading the go-sqlcmd binaries directly into our An example
|
Beta Was this translation helpful? Give feedback.
After some further digging, I'm downloading the go-sqlcmd binaries directly into our
Dockerfile
, utilising the convention outlined here.An example
Dockerfile
: