sample ui

This commit is contained in:
Simon Ding
2024-07-01 17:48:56 +08:00
parent 6b7b24f912
commit d5f45dd254
191 changed files with 23624 additions and 0 deletions

20
ui/Dockerfile Normal file
View File

@@ -0,0 +1,20 @@
FROM node:18-alpine as build-stage
WORKDIR /app
RUN corepack enable
RUN corepack prepare pnpm@8.6.10 --activate
RUN npm config set registry https://registry.npmmirror.com
COPY .npmrc package.json pnpm-lock.yaml ./
RUN pnpm install --frozen-lockfile
COPY . .
RUN pnpm build
FROM nginx:stable-alpine as production-stage
COPY --from=build-stage /app/dist /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]