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 /Dockerfile | |
parent | 955682553b7461f54b8d78aa698781ddfc9438e5 (diff) | |
download | herrschwarzify-11f7f12018eb759f2ebd1b3ffe499c3d3e0ce0b3.tar.gz herrschwarzify-11f7f12018eb759f2ebd1b3ffe499c3d3e0ce0b3.tar.bz2 herrschwarzify-11f7f12018eb759f2ebd1b3ffe499c3d3e0ce0b3.zip |
docker
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 3 |
1 files changed, 1 insertions, 2 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 |