From: Chocobozzz Date: Thu, 9 Aug 2018 17:34:39 +0000 (+0200) Subject: Clean yarn cache after install in docker X-Git-Tag: delete~27 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e5095ca55a9e3238d979fe3c6e0f246bba612c8e;p=oweals%2Fpeertube.git Clean yarn cache after install in docker --- diff --git a/support/docker/production/Dockerfile.stretch b/support/docker/production/Dockerfile.stretch index 7367721f4..370d17cff 100644 --- a/support/docker/production/Dockerfile.stretch +++ b/support/docker/production/Dockerfile.stretch @@ -58,6 +58,7 @@ RUN yarn install --pure-lockfile \ && npm run build \ && rm -r ./node_modules ./client/node_modules \ && yarn install --pure-lockfile --production + && yarn cache clean USER root