Builds the container
Runs an instance of the container
Runs an instance of the app directly from /src/index.ts with nodemon (it uses ts-node so it automatically transpiles to js)
Takes all there is in the folder /src, compiles it to javascript and saves it inside /dist. In order to use a watcher so that every time changes are saved the code is compiled you sould add the -w flag to the build script: "tsc -w"
Runs the app from /dist. (npm run build first)
"Buildea" el container.
Corre una instancia del container
Corre una instancia de la aplicación directamente desde /src/index.ts con nodemon (como usa ts-node, transpila automáticamente a js)
Toma todo lo que está en la carpeta /src, lo convierte a js y lo guarda dentro de /dist. Si se quiere agregar un watcher para que el compilador quede escuchando se debe agregar el flag -w (quedaría "tsc -w").
Ejecuta la aplicacion con node a partir de /dist. Tener en cuenta que para que funcione, hay que previamente haber corrido npm run build.