Dockerfile: Remove ~/.config after building the notebook. This directory only contains bower stuff and bower is removed in this RUN step.

This commit is contained in:
John Kirkham 2015-10-10 17:52:09 -04:00
parent 62b80f8d74
commit a7c3fa8b66

View File

@ -85,6 +85,7 @@ RUN BUILD_DEPS="nodejs-legacy npm" && \
apt-get clean && \
rm -rf /root/.npm && \
rm -rf /root/.cache && \
rm -rf /root/.config && \
rm -rf /var/lib/apt/lists/* && \
apt-get purge -y --auto-remove \
-o APT::AutoRemove::RecommendsImportant=false -o APT::AutoRemove::SuggestsImportant=false $BUILD_DEPS