diff options
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 |