Category: Docker, Software

How many times have you heard “works for me”? Rather than needing to document and try to map versions between tools, all can be done in Docker container. Below is simple example building node.js application: Then build image: and now you can build node application by running: All the libraries and the artifacts will be now in a local folder ready to be distributed without a hustle. Docker for build environment allows configuring and distributing the Docker file as a build environment or Build Environment as Code. Because of Docker, the possibility of the configuration complexity is endless, so you can build the next rocket ship.

Related Articles