Skip to content

Commit

Permalink
chore(deps): ruby:3.2.2-alpine3.18
Browse files Browse the repository at this point in the history
  • Loading branch information
YOU54F authored Oct 13, 2023
1 parent c240e51 commit b09ff77
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
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

0 comments on commit b09ff77

Please sign in to comment.