web: Reorganize into frontend/backend

This commit is contained in:
2025-11-06 12:41:03 -06:00
parent 54b5b9dd7f
commit c2d5e58c75
75 changed files with 0 additions and 0 deletions

13
web/frontend/Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
# Build Stage
FROM node:18-alpine AS build
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
# Production Stage
FROM nginx:stable-alpine AS production
COPY --from=build /app/build /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]