Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update to latest ruby alpine pkg #136

Merged
merged 1 commit into from
Oct 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,22 @@ ADD docker/gemrc /root/.gemrc
ADD docker/pact /usr/local/bin/pact

RUN apk update \
&& apk add ruby=3.3.3-r0 \
ruby-io-console=3.3.3-r0 \
&& apk add ruby=3.3.3-r1 \
ruby-io-console=3.3.3-r1 \
ca-certificates=20240705-r0 \
libressl \
less \
git \
&& apk add --virtual "build-dependencies" \
build-base=0.5-r3 \
ruby-dev=3.3.3-r0 \
ruby-dev=3.3.3-r1 \
libressl-dev \
ruby-rdoc=3.3.3-r0 \
ruby-rdoc=3.3.3-r1 \
&& gem install bundler -v "~>2.5" \
&& bundler -v \
&& bundle config build.nokogiri --use-system-libraries \
&& bundle config git.allow_insecure true \
&& gem update --system 3.5.14 \
&& gem update --system 3.5.20 \
&& gem install json -v "~>2.3" \
&& gem install bigdecimal -v "~>3.1" \
&& gem install racc -v "~>1.8" \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-bundle-base
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN apk update \
ruby-rdoc \
&& bundle config build.nokogiri --use-system-libraries \
&& bundle config git.allow_insecure true \
&& gem update --system 3.5.14 \
&& gem update --system 3.5.20 \
&& gem install json \
&& gem install bigdecimal \
&& gem install racc \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-node
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ RUN apk update \
&& bundler -v \
&& bundle config build.nokogiri --use-system-libraries \
&& bundle config git.allow_insecure true \
&& gem update --system 3.5.14 \
&& gem update --system 3.5.20 \
&& gem install json -v "~>2.3" \
&& gem install bigdecimal -v "~>3.1" \
&& gem install racc -v "~>1.8" \
Expand Down