Skip to content

Commit

Permalink
Merge pull request #307 from IUBLibTech/fix_ci_workflows_2024
Browse files Browse the repository at this point in the history
Preventing update of bundler past compatibility with Ruby 2.7
  • Loading branch information
randalldfloyd authored Jan 2, 2024
2 parents c660443 + 9c2ddc3 commit 6965655
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN groupadd -g ${GROUP_ID} app_archives && \
apt-get update -qq && \
apt-get install -y build-essential nodejs yarn
RUN yarn && \
yarn config set no-progress && \
yarn config set no-progress && \
yarn config set silent

###
Expand All @@ -30,7 +30,7 @@ VOLUME /container-data
RUN bundle config --global frozen 1

COPY --chown=app_archives:app_archives Gemfile Gemfile.lock ./
RUN gem update bundler && \
RUN gem install bundler -v "~> 2.4.22" && \
bundle install -j 2 --retry=3 --deployment --without development

COPY --chown=app_archives:app_archives . .
Expand All @@ -57,4 +57,4 @@ RUN mkdir /app/tmp/pids
EXPOSE 3000
ARG SOURCE_COMMIT
ENV SOURCE_COMMIT $SOURCE_COMMIT
CMD puma -b tcp://0.0.0.0:3000
CMD puma -b tcp://0.0.0.0:3000

0 comments on commit 6965655

Please sign in to comment.