Preparar imagen de Docker - Node App The article provides instructions for building and running a Docker image for a Node.js application using Docker Compose. It specifies commands that use a production configuration file and an environment file, while noting that if a default `.env` file is configured with production variables, the `--env-file` flag can be omitted. The summary focuses on the technical steps for deploying the application with Docker. docker-compose -f docker-compose.prod.yaml --env-file .env.prod up --build docker-compose -f docker-compose.prod.yaml --env-file .env.prod up Por defecto, docker-compose usa el archivo .env , por lo que si tienen el archivo .env y lo configuran con sus variables de entorno de producción, bastaría con docker-compose -f docker-compose.prod.yaml up --build