Skip to content

Commit

Permalink
fix: phusion passenger ruby image, ruby 2.7.4 (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nate Goldman authored Nov 11, 2021
1 parent 9b089bb commit db7fe6e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# |==> phusion/baseimage -- https://github.com/phusion/baseimage-docker
# |==> phusion/passenger-docker -- https://github.com/phusion/passenger-docker
# |==> HERE
FROM phusion/passenger-ruby27:1.0.12
FROM phusion/passenger-ruby27:2.0.1

# Update OS as per https://github.com/phusion/passenger-docker#upgrading-the-operating-system-inside-the-container
# Broken update https://github.com/DiUS/pact_broker-docker/runs/3799650621?check_suite_focus=true#step:9:87
Expand All @@ -12,7 +12,7 @@ FROM phusion/passenger-ruby27:1.0.12
# apt-get clean && \
# rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

RUN bash -lc 'rvm --default use ruby-2.7.2'
RUN bash -lc 'rvm --default use ruby-2.7.4'

ENV APP_HOME=/home/app/pact_broker/
WORKDIR $APP_HOME
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-bundle-base
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM phusion/passenger-ruby27:1.0.12
FROM phusion/passenger-ruby27:2.0.1

# Installation path
ENV HOME=/pact_broker
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-package-base
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:2.7.2-alpine
FROM ruby:2.7.4-alpine

# Installation path
ENV HOME=/app
Expand Down

0 comments on commit db7fe6e

Please sign in to comment.