Primera version para produccion

This commit is contained in:
2025-08-04 11:05:41 -06:00
parent 0dac802736
commit 4bc8a92021
8 changed files with 747 additions and 100 deletions

16
docker-compose.dev.yml Normal file
View File

@@ -0,0 +1,16 @@
version: '3.8'
services:
frontend:
build:
context: .
dockerfile: Dockerfile
image: efc_frontend_dev:latest
ports:
- "5173:5173"
volumes:
- .:/app
- /app/node_modules
environment:
- NODE_ENV=development
command: ["npm", "run", "dev", "--", "--host"]
restart: unless-stopped