From 99d10de00a6c9b1548092a606933827608d1b5b6 Mon Sep 17 00:00:00 2001 From: amathews Date: Wed, 14 Oct 2020 12:18:05 -0400 Subject: [PATCH] One liner to fix local docker building. With the async work being done there was a file dependency added to the gemfile. Bundle install is run in the container before the directory tree is copied into the container. --- development.Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/development.Dockerfile b/development.Dockerfile index 5d7f9f566cf..c5e88bb02b4 100644 --- a/development.Dockerfile +++ b/development.Dockerfile @@ -9,6 +9,7 @@ ENV MAKEFLAGS "-j$(nproc)" # Install dev and test gems COPY Gemfile Gemfile.lock ./ +COPY app/services/lambda_jobs/git_ref.rb ./app/services/lambda_jobs/ RUN bundle install -j $(nproc) --system --with development test # Install NPM packages