diff options
-rw-r--r-- | Dockerfile | 3 | ||||
-rw-r--r-- | Gemfile | 5 |
2 files changed, 3 insertions, 5 deletions
@@ -2,9 +2,8 @@ FROM ruby:2.5 RUN gem update --system --quiet && gem install bundler -v '~> 2.1' ENV BUNDLER_VERSION 2.2 -RUN bundle config --global frozen 1 WORKDIR /usr/src/app -COPY Gemfile Gemfile.lock ./ +COPY Gemfile ./ RUN bundle install COPY . . EXPOSE 4567 @@ -2,9 +2,8 @@ source "https://rubygems.org" -gem 'mini_magick' -gem 'chunky_png', '~> 1.3' -gem "sinatra" +gem "rmagick", "~> 4.1" +gem "sinatra", '~> 2.1' gem "rake", "~> 13.0" |