From 5550dd4759f01569c00b77e745b3110e39f256cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filberto=20P=C3=A9res=20L=C3=B3pez?= <> Date: Mon, 28 Jul 2025 13:24:57 -0600 Subject: [PATCH] first commit --- .gitignore | 4 ++++ Dockerfile.nest-app | 12 ++++++++++++ Dockerfile.vue-app | 15 +++++++++++++++ nginx/nginx.conf | 22 ++++++++++++++++++++++ 4 files changed, 53 insertions(+) create mode 100644 .gitignore create mode 100644 Dockerfile.nest-app create mode 100644 Dockerfile.vue-app create mode 100644 nginx/nginx.conf diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fc74e55 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +app-build/ +client-build/ +Dockerfile +docker-compose.yml \ No newline at end of file diff --git a/Dockerfile.nest-app b/Dockerfile.nest-app new file mode 100644 index 0000000..0e8f600 --- /dev/null +++ b/Dockerfile.nest-app @@ -0,0 +1,12 @@ +FROM node:latest + +WORKDIR /app-back + +COPY ./app-build/package*.json . +RUN npm install + +COPY ./app-build . +RUN npm run build + +EXPOSE 3001 +CMD ["npm", "run", "start:prod"] \ No newline at end of file diff --git a/Dockerfile.vue-app b/Dockerfile.vue-app new file mode 100644 index 0000000..efe558e --- /dev/null +++ b/Dockerfile.vue-app @@ -0,0 +1,15 @@ +FROM node:latest AS build-stage + +WORKDIR /app +COPY ./client-build/package*.json ./ +RUN npm install +COPY ./client-build . +RUN npm run build + +# Etapa 2: Servir la aplicación con Nginx +FROM nginx:alpine AS production-stage + +COPY --from=build-stage /app/dist /usr/share/nginx/html +COPY ./nginx/nginx.conf /etc/nginx/conf.d/default.conf +EXPOSE 3001 +CMD ["nginx", "-g", "daemon off;"] \ No newline at end of file diff --git a/nginx/nginx.conf b/nginx/nginx.conf new file mode 100644 index 0000000..2dbc361 --- /dev/null +++ b/nginx/nginx.conf @@ -0,0 +1,22 @@ +server { + + listen 80; + + # Servir archivos estáticos Vue + location / { + root /usr/share/nginx/html; + index index.html; + try_files $uri $uri/ /index.html; + } + + # Redirigir API al backend NestJS + location /api/ { + proxy_pass http://localhost:3001; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection 'upgrade'; + proxy_set_header Host $host; + proxy_cache_bypass $http_upgrade; + } + +}