Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update Dockerfile
  • Loading branch information
victor-nb authored Mar 4, 2025
commit 23ac58e42c1a9295d8e282b51fbda397725e9bcf
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ RUN apk update && apk upgrade && \

COPY Gemfile Gemfile.lock .

RUN gem install bundler -v "$(grep -A 1 "BUNDLED WITH" Gemfile.lock | tail -n 1)" && \
RUN gem install loofah -v 2.2.2

RUN gem install bundler -v "$(grep -A 1 'BUNDLED WITH' Gemfile.lock | tail -n 1)" && \
bundle config set without 'development test' && \
bundle install

Expand Down