add yarn 4.4.1 into the repo

This commit is contained in:
CodedSakura 2024-10-18 21:12:59 +03:00
parent 409ecef1e7
commit 09f1500439
3 changed files with 927 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
out.txt out.txt
node_modules/ node_modules/
.yarn/ .yarn/
!.yarn/releases/*

925
.yarn/releases/yarn-4.4.1.cjs vendored Executable file

File diff suppressed because one or more lines are too long

View File

@ -5,7 +5,7 @@ WORKDIR /app
COPY . . COPY . .
RUN yarn set version 4.4.1 && yarn install RUN yarn install
ENV PORT=80 ENV PORT=80
ENTRYPOINT ["yarn", "run", "start"] ENTRYPOINT ["yarn", "run", "start"]