frontend build

This commit is contained in:
bbh
2025-07-30 21:24:17 +08:00
commit f72111e716
101 changed files with 15364 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
# FROM node:20
# WORKDIR /app
# COPY package*.json /app/
# RUN npm install
# RUN npx -y playwright install --with-deps
# COPY ./ /app/
# ARG VITE_API_URL=${VITE_API_URL}
FROM node:20
WORKDIR /app
COPY package*.json /app/
RUN npm config set registry https://registry.npmmirror.com/
RUN npm install playwright
COPY ./ /app/
ARG VITE_API_URL=${VITE_API_URL}