Merge branch 'dev' into 'main'

Dev

See merge request illegitimate/illegitimate-bot!202
This commit is contained in:
2024-01-26 09:49:13 +00:00
6 changed files with 2036 additions and 1461 deletions

BIN
.yarn/install-state.gz Normal file

Binary file not shown.

1
.yarnrc.yml Normal file
View File

@@ -0,0 +1 @@
nodeLinker: node-modules

View File

@@ -6,6 +6,7 @@ COPY . /app
WORKDIR /app WORKDIR /app
ENV NODE_PATH=dist/ ENV NODE_PATH=dist/
RUN corepack enable
RUN yarn build RUN yarn build
CMD [ "yarn", "start" ] CMD [ "yarn", "start" ]

View File

@@ -2,9 +2,11 @@ FROM node:20.9.0-alpine3.18
RUN mkdir /cache RUN mkdir /cache
COPY .yarnrc.yml /cache
COPY package.json /cache COPY package.json /cache
COPY yarn.lock /cache COPY yarn.lock /cache
WORKDIR /cache WORKDIR /cache
RUN yarn install RUN corepack enable
RUN yarn install

View File

@@ -36,5 +36,6 @@
"eslint": "^8.56.0", "eslint": "^8.56.0",
"ts-node": "^10.9.2", "ts-node": "^10.9.2",
"typescript": "^5.3.3" "typescript": "^5.3.3"
} },
"packageManager": "yarn@4.0.2"
} }

3486
yarn.lock

File diff suppressed because it is too large Load Diff