first commit

This commit is contained in:
Jefferyhcool
2025-04-13 17:44:54 +08:00
commit 0e0b8da317
112 changed files with 4397 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
FROM node:18-alpine AS build
WORKDIR /app
COPY ./BillNote_frontend /app
RUN npm install && npm run build
FROM nginx:alpine
COPY --from=build /app/dist /usr/share/nginx/html
EXPOSE 80