Hey i have this message when i try to build redash in docker, any help please ?

Welcome to the forum and thanks for your question. Are you building on an Apple Silicon mac?

The issue is that the Docker download of Simba Databricks ODBC driver fails due to redirect in Databricks. This issue repros on Ubuntu for me.

Issue:

curl "$databricks_odbc_driver_url" --output /tmp/simba_odbc.zip -v
...
location: https://www.databricks.com/wp-content/uploads/2.6.10.1010-2/SimbaSparkODBC-2.6.10.1010-2-Debian-64bit.zip

The fix is to add -L to curl which supports redirects:

Line 75 in the Dockerfile should be

     && curl "$databricks_odbc_driver_url" -L --output /tmp/simba_odbc.zip \

I will try to push a PR. In the meantime, you can manually fix the Dockerfile.

Looks like someone has already fixed this here: Update Dockerfile by trigremm · Pull Request #5814 · getredash/redash (github.com)