From 733c663ec2f8bb931639abfa2e39ed5c511008a5 Mon Sep 17 00:00:00 2001 From: yoshino-s Date: Mon, 24 Jun 2024 16:00:34 +0000 Subject: [PATCH] Update file Dockerfile --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 5d26aae..5f98ed4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,9 @@ FROM base AS deps RUN apk add --no-cache libc6-compat WORKDIR /app +RUN corepack enable &&\ + corepack prepare pnpm@latest-8 --activate + COPY package.json pnpm-lock.yaml ./ RUN pnpm install