From a7c3fa8b669fe60c7b812022d58aec034a86437d Mon Sep 17 00:00:00 2001 From: John Kirkham Date: Sat, 10 Oct 2015 17:52:09 -0400 Subject: [PATCH] Dockerfile: Remove `~/.config` after building the `notebook`. This directory only contains `bower` stuff and `bower` is removed in this `RUN` step. --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 6f89d68a6..8e99c37c6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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