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): ruby:3.2.2-alpine3.18 #152

Closed
wants to merge 1 commit into from
Closed
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.2.1-alpine3.17 as base
FROM ruby:3.2.2-alpine3.18 as base

# 1. Install target specfic dependencies
# - gcompat required for arm/arm64 (otherwise nokogiri breaks when viewing network graph)
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile-bundle-base
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:2.7.8-alpine3.16
FROM ruby:3.2.2-alpine3.18

# Installation path
ENV HOME=/pact_broker
Expand All @@ -10,6 +10,6 @@ RUN set -ex && \
chmod g+w $HOME && \
apk add --update --no-cache make gcc libc-dev mariadb-dev postgresql-dev sqlite-dev

RUN gem install bundler -v 2.4.7
RUN gem install bundler -v 2.4.12
COPY pact_broker/Gemfile pact_broker/Gemfile.lock $HOME/
RUN bundle install --no-cache
4 changes: 2 additions & 2 deletions Dockerfile-package-base
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM ruby:2.7.8-alpine3.16
FROM ruby:3.2.2-alpine3.18

# Installation path
ENV HOME=/app
WORKDIR $HOME

RUN apk add --update --no-cache git
RUN gem install bundler -v 2.4.7
RUN gem install bundler -v 2.4.12

COPY Rakefile $HOME/
COPY Gemfile Gemfile.lock $HOME/
Expand Down