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

pull/589/head
John Kirkham 11 years ago
parent 62b80f8d74
commit a7c3fa8b66

@ -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

Loading…
Cancel
Save