From 0c0dacfd416f29b8353fcb722e8cca73f4dc0847 Mon Sep 17 00:00:00 2001 From: "sahil.kamble@ayanworks.com" Date: Mon, 24 Jun 2024 15:15:39 +0530 Subject: [PATCH] refactor: updated docker file Signed-off-by: sahil.kamble@ayanworks.com --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 631d3e01..aa3b1303 100644 --- a/Dockerfile +++ b/Dockerfile @@ -51,12 +51,12 @@ WORKDIR /app # Copy package.json and yarn.lock files COPY package.json yarn.lock ./ -# Install dependencies -RUN yarn install --frozen-lockfile - # Copy the rest of the application code COPY . . +# Install dependencies +RUN yarn install --frozen-lockfile + RUN yarn global add patch-package # Build the application