python migration

This commit is contained in:
2026-05-26 14:36:34 -04:00
parent a67815c61a
commit 1ba2aa39d8
694 changed files with 1396 additions and 86487 deletions
+21
View File
@@ -0,0 +1,21 @@
# ---- Build stage ----
FROM node:20 AS builder
WORKDIR /app
COPY package.json package-lock.json* ./
RUN npm install
COPY . .
RUN npm run build
# ---- Production stage ----
FROM nginx:alpine
# Copy built React app
COPY --from=builder /app/dist /usr/share/nginx/html
# Replace nginx config
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80