1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-24 17:04:43 +00:00
Files
wrestlingdev.com/rails-dev-Dockerfile

20 lines
308 B
Plaintext

FROM ruby:2.2.3
RUN apt-get update
RUN apt-get install -y build-essential
RUN apt-get install -y nodejs sqlite3
RUN gem install --no-rdoc --no-ri bundler
ADD Gemfile* /tmp/
WORKDIR /tmp
RUN bundle install --without production
RUN mkdir /rails
WORKDIR /rails
VOLUME ["/rails"]
EXPOSE 3000
CMD /bin/bash