From 9b20909a1f3cef89cb4fe649828afe228121b048 Mon Sep 17 00:00:00 2001 From: Lucid Date: Fri, 5 Dec 2025 23:42:57 -0500 Subject: [PATCH] update yarn install --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 03cf7f9..913e685 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,9 +4,8 @@ RUN corepack enable RUN corepack prepare yarn@stable --activate COPY package.json yarn.lock /app/ WORKDIR /app -RUN yarn install --immutable +RUN yarn install RUN ls -lR /app -RUN ls -lR / # --- Stage 2: Builder --- FROM node:20-alpine AS builder