From 5730f9fcc8bd481f3c4dba1f09b10c16b8af1506 Mon Sep 17 00:00:00 2001 From: Evelyn Hasama Date: Thu, 25 Jan 2024 17:00:09 -0800 Subject: [PATCH 1/2] add temp fix for bundler issue --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 284e73b..1dbc86f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,6 +26,7 @@ RUN apt-get -y install build-essential git nginx postgresql libpq-dev python-dev imagemagick chromium #To correct bundler 2 error https://stackoverflow.com/questions/53231667/bundler-you-must-use-bundler-2-or-greater-with-this-lockfile +# To fix bundler requires Ruby version >= version error : RUN gem install bundler -v '2.4.22', see https://github.com/rubygems/bundler/issues/6865 RUN gem install bundler WORKDIR /aspc From 2e83febb67c602c2712d39ebeb58a747c2d0723c Mon Sep 17 00:00:00 2001 From: Evelyn Hasama Date: Mon, 29 Jan 2024 22:00:01 -0800 Subject: [PATCH 2/2] change dockerfile --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1dbc86f..1271c11 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,8 +26,7 @@ RUN apt-get -y install build-essential git nginx postgresql libpq-dev python-dev imagemagick chromium #To correct bundler 2 error https://stackoverflow.com/questions/53231667/bundler-you-must-use-bundler-2-or-greater-with-this-lockfile -# To fix bundler requires Ruby version >= version error : RUN gem install bundler -v '2.4.22', see https://github.com/rubygems/bundler/issues/6865 -RUN gem install bundler +RUN gem install bundler -v '2.4.22' WORKDIR /aspc