From e55e8328091c7fae73ffed3886bd2f51654254ea Mon Sep 17 00:00:00 2001 From: Baptiste Boulongne Date: Sat, 18 May 2024 12:53:20 +0200 Subject: [PATCH] moved from npm to yarn --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index fb2c426..68021f7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,9 +14,8 @@ RUN apk add git git-lfs WORKDIR /app COPY --from=fetch /repo . WORKDIR /app/project -RUN npm install -g npm@10.5.1 -RUN npm install -RUN npm run build:release +RUN yarn +RUN yarn run build:release FROM alpine as base RUN apk update && \