From cc090d64146a40ed928b2bd157cb0702760e35a5 Mon Sep 17 00:00:00 2001 From: Lucid Date: Sat, 6 Dec 2025 00:11:35 -0500 Subject: [PATCH] check folder --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ed3d345..99f4c5c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,6 @@ RUN corepack prepare yarn@stable --activate WORKDIR /app COPY package.json yarn.lock .yarnrc.yml ./ RUN yarn install -RUN ls -lR /app # --- Stage 2: Builder --- FROM node:20-alpine AS builder @@ -13,6 +12,7 @@ RUN corepack enable RUN corepack prepare yarn@stable --activate WORKDIR /app COPY --from=dependencies /app/node_modules ./ +RUN ls -lR /app/node_modules COPY . /app/ RUN yarn build