From 75100254c9c2232f1d1a1df8aee2018fd92895f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Van=C3=AD=C4=8Dek?= Date: Mon, 27 Feb 2023 20:05:10 +0100 Subject: [PATCH] INstall dependencies using bundle check || bundle install --- Dockerfile | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 01f15fd..e35709c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,8 +2,10 @@ FROM redmine:5-bullseye COPY plugins/ plugins/ -RUN gem install icalendar \ - && cd plugins/redmine_ics_export \ - && bundle install --without development test \ - && cd ../000_redmine_x_ux_upgrade \ - && bundle install --without development test \ No newline at end of file +RUN bundle check || bundle install +#RUN apt-get install ruby-binding-of-caller +# && gem install icalendar better_errors binding_of_caller \ +# && cd plugins/redmine_ics_export \ +# && bundle install --without development test \ +# && cd ../000_redmine_x_ux_upgrade \ +# && bundle install --without development test \ No newline at end of file