From 929294bea0c82ba1edaa6bfaa7c517432af9e5e6 Mon Sep 17 00:00:00 2001 From: Lucid Date: Sat, 6 Dec 2025 00:01:50 -0500 Subject: [PATCH] move workdir to top level --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 847472d..4795cfb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,8 +2,8 @@ FROM node:20-alpine AS dependencies RUN corepack enable RUN corepack prepare yarn@stable --activate -COPY package.json yarn.lock .yarnrc.yml ./ WORKDIR /app +COPY package.json yarn.lock .yarnrc.yml ./ RUN yarn install RUN ls -lR /app