aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index be20fbc..539cc17 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -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