From 6b391f1912cb9e84652f57aab9e8c60f25851ac2 Mon Sep 17 00:00:00 2001 From: gamezonline Date: Mon, 2 Jun 2025 16:07:32 -0500 Subject: [PATCH] Update Dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4c4c739..8fc10f6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,8 +6,9 @@ COPY package*.json . COPY . . RUN apk update -RUN wget -qO- https://get.pnpm.io/install.sh | ENV="$HOME/.shrc" SHELL="$(which sh)" sh - RUN npm install +RUN npm install --global corepack@latest +RUN corepack enable pnpm RUN npm run build VOLUME /app EXPOSE 8080