Skip to content

Instantly share code, notes, and snippets.

@kimadactyl
Last active August 17, 2017 18:44
Show Gist options
  • Save kimadactyl/6a8ab8ebf099dc9c01ff0154f4c4b4c2 to your computer and use it in GitHub Desktop.
Save kimadactyl/6a8ab8ebf099dc9c01ff0154f4c4b4c2 to your computer and use it in GitHub Desktop.
Troubleshooting
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