larroy commented on issue #14855: [WIP] Jetson nano & TX installation updates
URL: https://github.com/apache/incubator-mxnet/pull/14855#issuecomment-495360076
 
 
   I sometimes have docker issues as well, I think the way we use it triggers 
some bugs in caching. I suggest to do the following which has worked for me 
when I had problems:
   
   * docker pull the base images manually, ex. ubuntu
   * Fully erase the docker cache.
   * Don't use cache-from in your build.py script and build the container 
locally.
   
   ```
   docker pull ubuntu:16.04
   docker rm $(docker ps -a -q)
   docker rmi $(docker images -a -q)
   ```
   
   This is of course if you think your problems are related to docker caching.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to