In roughly 20 minutes
Scott Ross - Software Programmer
Cornell University
FROM ubuntu
RUN apt-get install -y software-properties-common python
RUN add-apt-repository ppa:chris-lea/node.js
RUN apt-get update
RUN apt-get install -y nodejs
RUN mkdir /var/www
ADD app.js /var/www/app.js
CMD ["/usr/bin/node", "/var/www/app.js"]
by providing solutions for
by providing ways to handle
The Big Picture
DevOps
and
Containerization
// javaScipt WAT!
// Array + Array
[] + [] ="";
// Array + Object
[] + {} = [object Object]
// Object + Array
{} + [] = 0
// Not A Number
{} + {} = NaN
WAT