You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Per #9060 (comment), best practice for apt-get install in docker is to rm -rf /var/lib/apt/lists/* after installation. we should change all docker apt-get command to do this.
The text was updated successfully, but these errors were encountered:
Per #9060 (comment), best practice for apt-get install in docker is to rm -rf /var/lib/apt/lists/* after installation. we should change all docker apt-get command to do this.
Also it is implied by this change that all our docker/install/*.sh files should not assume there is an apt cache, and therefore, they should all apt-get update prior to installing any package.
Per #9060 (comment), best practice for
apt-get install
in docker is torm -rf /var/lib/apt/lists/*
after installation. we should change all docker apt-get command to do this.The text was updated successfully, but these errors were encountered: