From: Florian Maunier Date: Fri, 7 Apr 2017 11:31:18 +0000 (+0200) Subject: Fix npm/yarn cache cleaning X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=12f1cdeed1dcc328efc09eb0e9fe358f6bff1b8e;p=mastodon.git Fix npm/yarn cache cleaning --- diff --git a/Dockerfile b/Dockerfile index c28287cca..57a8f34e9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,7 +29,8 @@ RUN BUILD_DEPS=" \ && npm install -g npm@3 && npm install -g yarn \ && bundle install --deployment --without test development \ && yarn \ - && npm cache clean \ + && yarn cache clean \ + && npm -g cache clean \ && apk del $BUILD_DEPS \ && rm -rf /tmp/* /var/cache/apk/*