From 889da3ebf7475073726799a48b2a370798244af0 Mon Sep 17 00:00:00 2001 From: Noah Koontz Date: Thu, 10 Dec 2020 11:23:52 -0800 Subject: [PATCH] fix: update dockerfile to reconfigure bundle which (may) have caused some bugs on linux --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 5449cf1b..eee2cd15 100644 --- a/Dockerfile +++ b/Dockerfile @@ -57,4 +57,8 @@ RUN npm install --production # move the rest of the project over COPY . . +# Configure bundler +ENV BUNDLE_GEMFILE=/app/Gemfile +ENV BUNDLE_PATH=/app/vendor/bundle + ENTRYPOINT ["bundle", "exec", "/app/bin/repolinter.js"]