chore: switch to pnpm and remove DISCORD_APP
This commit is contained in:
parent
930d7bca12
commit
cb16991417
10 changed files with 1692 additions and 1657 deletions
13
Dockerfile
13
Dockerfile
|
@ -1,6 +1,11 @@
|
|||
FROM docker.io/library/node:19-alpine
|
||||
FROM docker.io/library/node:20-alpine
|
||||
RUN corepack enable
|
||||
RUN corepack prepare pnpm@latest --activate
|
||||
|
||||
WORKDIR /app
|
||||
COPY package.json yarn.lock ./
|
||||
RUN yarn install --frozen-lockfile
|
||||
|
||||
COPY package.json pnpm-lock.yaml .
|
||||
RUN pnpm install
|
||||
|
||||
COPY . .
|
||||
CMD [ "yarn", "start" ]
|
||||
CMD [ "pnpm", "run", "start" ]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue