From 94bb5affa35bef6c3d1a0ffea3759e6fe8554dcd Mon Sep 17 00:00:00 2001 From: Jacob Cody Wimer Date: Thu, 9 Nov 2017 08:53:04 -0500 Subject: [PATCH] Added Gemfile.lock to docker build --- rails-prod-Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/rails-prod-Dockerfile b/rails-prod-Dockerfile index 00c47e4..471cd64 100644 --- a/rails-prod-Dockerfile +++ b/rails-prod-Dockerfile @@ -23,6 +23,7 @@ EXPOSE 443 #Cache gems so they don't install on every code change WORKDIR /tmp COPY Gemfile Gemfile +COPY Gemfile.lock Gemfile.lock RUN bundle install --without test # Copy site into place.