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

Upgraded to Rails 6.0.1

This commit is contained in:
2019-11-19 13:41:17 -05:00
parent 8a9ea7ff35
commit 76b7b82716
6 changed files with 139 additions and 118 deletions

View File

@@ -18,6 +18,7 @@ RUN echo "America/New_York" > /etc/timezone \
RUN echo 'gem: --no-rdoc --no-ri' > /root/.gemrc
RUN gem install bundler
RUN gem update --system
ADD Gemfile* /tmp/
WORKDIR /tmp
RUN bundle install --jobs 4 --without production

View File

@@ -26,6 +26,7 @@ RUN apt-get -qq update \
RUN echo 'gem: --no-rdoc --no-ri' > /root/.gemrc
RUN gem install bundler
RUN gem update --system
#Cache gems so they don't install on every code change
RUN rm -rf /rails && mkdir /rails
WORKDIR /rails