diff options
author | Roman Gräf <romangraef@loves.dicksinhisan.us> | 2020-11-29 03:17:35 +0100 |
---|---|---|
committer | Roman Gräf <romangraef@loves.dicksinhisan.us> | 2020-11-29 03:17:35 +0100 |
commit | 11f7f12018eb759f2ebd1b3ffe499c3d3e0ce0b3 (patch) | |
tree | 5fd18e4c9985ee75cb18b24579081c18e474740b | |
parent | 955682553b7461f54b8d78aa698781ddfc9438e5 (diff) | |
download | herrschwarzify-11f7f12018eb759f2ebd1b3ffe499c3d3e0ce0b3.tar.gz herrschwarzify-11f7f12018eb759f2ebd1b3ffe499c3d3e0ce0b3.tar.bz2 herrschwarzify-11f7f12018eb759f2ebd1b3ffe499c3d3e0ce0b3.zip |
docker
-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" |