Nube

Tagged in

build

Chaining Builds In Openshift

New application Creating a Node.js application in Openshift is simple: oc login -u user oc new-project hello # Assuming you are logged and you have a project you can start here. oc new-app --name node-app nodejs~https://github.com/cesarvr/hello-world-nodejs #new app using nodejs:latest (Node.js 8) This command will create the backbone (BuildConfig, DeploymentConfig and Service) to orchestrate the different stages from source code to a running application. The size problem But this nice abstraction come with a cost, to explain what I mean, let’s review size of our final image using du:...