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
# Article for Dockerfile at ADD_URL_FOR_THIS | |
# We're using the Ruby 2.3.1 base container and extend it | |
FROM ruby:2.3.1 | |
# We install certain OS packages necessary for running our build | |
# Node.js needs to be installed for compiling assets | |
# libpq-dev is necessary for installing the pg gem | |
# libmysqlclient-dev is necessary for installing the mysql2 gem | |
RUN apt-get update && \ | |
apt-get install -yq \ |