新版本UI更新

This commit is contained in:
“yf”
2024-02-14 23:39:12 +08:00
commit e8744cf7e6
124 changed files with 18216 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM node:18-bullseye
WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn config set registry 'https://registry.npmmirror.com/' && \
yarn config set sharp_binary_host https://npmmirror.com/mirrors/sharp && \
yarn config set sharp_libvips_binary_host https://npmmirror.com/mirrors/sharp-libvips && \
yarn install --frozen-lockfile
COPY . .
RUN yarn run build
CMD ["yarn", "run", "serve"]