Created
June 26, 2015 17:21
-
-
Save mustela/c78477f12896b40c2829 to your computer and use it in GitHub Desktop.
Rails Dockerfile
This file contains 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
# Base image | |
FROM ruby:latest | |
ENV HOME /home/rails/webapp | |
# Install PGsql dependencies and js engine | |
RUN apt-get update -qq && apt-get install -y build-essential libpq-dev nodejs | |
WORKDIR $HOME | |
# Install gems | |
ADD Gemfile* $HOME/ | |
RUN bundle install | |
# Add the app code | |
ADD . $HOME | |
# Default command | |
CMD ["rails", "server", "--binding", "0.0.0.0"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment