File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- FROM node:20-slim AS base
2- ENV PNPM_HOME="/pnpm"
3- ENV PATH="${PNPM_HOME}:${PATH}"
4- RUN corepack enable
51
6- FROM base AS build
7- COPY . /usr/src/app
8- WORKDIR /usr/src/app
9- RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile
10- RUN pnpm prune --prod
11- RUN pnpm run remix:build
12-
13- FROM base AS remix
14- COPY --from=build /usr/src/app /usr/src/app
15- WORKDIR /usr/src/app/apps/remix
16- EXPOSE 3000
17- CMD ["pnpm" , "start" ]
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import ServerIcon from "./icons/ServerIcon";
99// vmail.dev 域名的历史数据基础值
1010const VMAIL_DEV_BASE_STATS = {
1111 totalAddressesCreated : 56023 ,
12- totalEmailsReceived : 342678 ,
12+ totalEmailsReceived : 1342678 ,
1313 totalApiKeysCreated : 1840 ,
1414 totalApiCalls : 15734 ,
1515} ;
You can’t perform that action at this time.
0 commit comments