- Crear Dockerfile multi-stage para optimizar tamaño - Crear docker-compose.yml para gestión fácil - Crear deploy-docker.sh script de despliegue - Crear .dockerignore para optimizar build - Crear GitHub Actions workflow para auto-deploy Docker - Crear DEPLOYMENT_DOCKER.md con documentación completa - Actualizar .gitignore para Docker - Puerto 8607 configurado en Docker - Health check incluido en contenedor - Multi-stage build para reducir tamaño de imagen final
70 lines
727 B
Plaintext
70 lines
727 B
Plaintext
# Dependencias
|
|
node_modules
|
|
npm-debug.log
|
|
yarn-error.log
|
|
package-lock.json
|
|
|
|
# Build outputs
|
|
dist
|
|
build
|
|
.next
|
|
out
|
|
|
|
# Desarrollo
|
|
.env.local
|
|
.env.development
|
|
.env.test
|
|
|
|
# Testing
|
|
coverage
|
|
.nyc_output
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|
|
|
|
# IDE
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
.localized
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Backups y temporales
|
|
_BACKUP_MD
|
|
backup_*
|
|
deleted_*
|
|
imagenes-pendientes
|
|
MANUAL_TES_DIGITAL
|
|
|
|
# Documentación temporal
|
|
docs/backup
|
|
docs/archive
|
|
*.md.bak
|
|
|
|
# Scripts de desarrollo
|
|
*.py
|
|
*.sh
|
|
!deploy-docker.sh
|
|
|
|
# Configuraciones no necesarias en Docker
|
|
ecosystem.config.js
|
|
webhook-deploy.sh
|
|
.github
|
|
vercel.json
|
|
netlify.toml
|
|
nginx.conf.example
|
|
|
|
# Documentación (opcional, comentar si quieres incluirla)
|
|
# docs/
|
|
# *.md
|