DEV Community

Discussion on: How do you get Node.js apps to production?

Collapse
 
bstrobach profile image
Bjoern • Edited

I used to use IBM Cloud (aka Bluemix) Pipelines. Due to a recent employer change I started using self hosted TFS with Build & Release pipelines.
All my Node applications live in Docker containers in a self hosted registry. And this is the most annoying part. Sometimes it takes up to 30 minutes to build, run tests (E2E&Unit) and deploy. But I think this relies on our self hosted infrastructure ;D Maybe I can try to convice my employer to switch to a cloud solution.

Collapse
 
aaronpowell profile image
Aaron Powell

Are you doing multi-stage Docker files, or separate Docker files for each stage?

With regards to Cloud, it is just someone elses computer after all! πŸ˜‰

Jokes aside, do you know what the reason for choosing self-hosted infrastructure over cloud (public or private) is?