Docker installation - build image locally loading for long time

Hi,

I have devloped an application with NCS v2.0.0. I have succesfully built and flahsed the application to the nRF52833 DK. I now would like to use Docker to build the application. I am following the steps on this page. After pasting the below line into the terminal, it loads indefintely. I have attached a screenshot of what I see in the terminal. Any suggestions as to what I should do please?

docker build -t nrfconnect-sdk --build-arg sdk_nrf_revision=v2.1-branch

Regards,
Adam

  • It looks like an issue with accessing your local windows folders inside the Docker container. You have to mount it, so it is accessible inside the container and this seems to be an issue. Since I am not on Windows, you have to figure out how mount windows directories in Docker yourself. Then all commands inside the container work with the Linux folder notation. So west build should not use the Windows folder notation, but the Linux one.

Related