diff --git a/Dockerfile b/Dockerfile index 1508fc3..084f4de 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,8 @@ RUN apt-get update && \ WORKDIR /count_anything COPY Gemfile Gemfile.lock package.json yarn.lock ./ -RUN bundle install --without development test && \ +RUN bundle config set --local without 'development test' && \ + bundle install && \ yarn install && \ rails assets:precompile