From 4fdfb6ecc1a8c818e8084675487b930ae4879e6b Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sun, 3 Mar 2024 17:46:09 +0000 Subject: [PATCH] =?UTF-8?q?=E2=9D=8E=20Add=20yarn=20cache=20clean,=20to=20?= =?UTF-8?q?remove=20un-needed=20cached=20files?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3a6b4e47..632fe4ed 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ WORKDIR /app # Install app dependencies COPY package.json yarn.lock ./ -RUN yarn install --ignore-engines --frozen-lockfile --no-cache --network-timeout 600000 +RUN yarn install --ignore-engines --frozen-lockfile --no-cache --network-timeout 600000 && yarn cache clean # Copy over all project files and folders to the working directory COPY . ./