feat: Añadir scripts para generar y sincronizar archivos .env, actualizar configuraciones de Docker y mejorar el despliegue en producción

This commit is contained in:
2026-03-31 10:10:44 -03:00
parent f6b6f84427
commit 2d54d6abfc
7 changed files with 265 additions and 136 deletions
+4
View File
@@ -16,6 +16,10 @@ RUN cargo build --release -p lms-service
# Build stage for Next.js Experience
FROM node:20-alpine AS node-builder
WORKDIR /app
# Configure DNS for Google Fonts access during build
RUN echo "nameserver 8.8.8.8" > /etc/resolv.conf
COPY web/experience/package*.json ./
RUN npm ci
COPY web/experience/ .