BlogHide Resteemskevinhatan (25)in docker • 7 years agoHow to prevent downloading of Gradle dependencies when doing docker run for gradle projectsWrite these entries into your Dockerfile as follows: RUN mkdir -p /root/.gradle ENV HOME /root VOLUME /root/.gradle In your docker run command, you just need to amount your root .gradle folder…kevinhatan (25)in ionic • 7 years agoHow to Solve ‘ionic cordova build android’ Issue on Mac OS XLately I was working on an Ionic 2 app when I tried the ionic cordova build android and it outputs an error as below: ANDROID_HOME=~/android-sdk-macosx/…