Last active
August 17, 2017 18:44
-
-
Save kimadactyl/6a8ab8ebf099dc9c01ff0154f4c4b4c2 to your computer and use it in GitHub Desktop.
Troubleshooting
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.4.0 | |
RUN apt-get update -qq && apt-get install -y build-essential libpq-dev nodejs | |
RUN mkdir /gofg-db | |
WORKDIR /gofg-db | |
ADD Gemfile /gofg-db/Gemfile | |
ADD Gemfile.lock /gofg-db/Gemfile.lock | |
RUN bundle install | |
ADD . /gofg-db | |
ENTRYPOINT ["/gofg-db/docker-entry.sh"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment