I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!
\
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM ruby:2.2.3 | |
| MAINTAINER tiagopog@gmail.com | |
| # Install apt based dependencies required to run Rails as | |
| # well as RubyGems. As the Ruby image itself is based on a | |
| # Debian image, we use apt-get to install those. | |
| RUN apt-get update && apt-get install -y \ | |
| build-essential \ | |
| nodejs |
OlderNewer