From 409ecef1e76b1cd658e970116e228580406c3257 Mon Sep 17 00:00:00 2001 From: CodedSakura Date: Fri, 18 Oct 2024 21:11:19 +0300 Subject: [PATCH] install correct yarn --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 32f2b24..f24a907 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ WORKDIR /app COPY . . -RUN yarn install +RUN yarn set version 4.4.1 && yarn install ENV PORT=80 ENTRYPOINT ["yarn", "run", "start"]