From d25a80dd48a2361591b43a54ece53c0bc5ff9bc0 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sun, 3 Mar 2024 17:44:36 +0000 Subject: [PATCH] =?UTF-8?q?=E2=9D=8E=20Add=20--no-cache=20to=20reduce=20Do?= =?UTF-8?q?cker=20container=20size?= 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 96e343b0..3a6b4e47 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 --network-timeout 600000 +RUN yarn install --ignore-engines --frozen-lockfile --no-cache --network-timeout 600000 # Copy over all project files and folders to the working directory COPY . ./