Skip to content

Commit 61d1c47

Browse files
Merge pull request #194 from datacite/update_passenger
update passenger to 3.1.6 and ruby to 3.2.10
2 parents 54cdf3e + 4261a5d commit 61d1c47

2 files changed

Lines changed: 6 additions & 7 deletions

File tree

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ jobs:
5151
AWS_REGION: ${{ secrets.AWS_REGION }}
5252
steps:
5353
- uses: actions/checkout@v3
54-
- name: Set up Ruby 3.1.4
54+
- name: Set up Ruby 3.2.10
5555
uses: ruby/setup-ruby@v1
5656
with:
57-
ruby-version: 3.1.4
57+
ruby-version: 3.2.10
5858
- uses: actions/cache@v4
5959
with:
6060
path: vendor/bundle
@@ -81,4 +81,4 @@ jobs:
8181
AWS_S3_BUCKET: 'metrics-api.stage.datacite.org'
8282
run: |
8383
bundle exec rspec
84-
echo $?
84+
echo $?

Dockerfile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
FROM phusion/passenger-full:2.5.1
2-
LABEL maintainer="kgarza@datacite.org"
3-
LABEL maintainer_name="Kristian Garza"
1+
FROM phusion/passenger-full:3.1.6
2+
LABEL maintainer="support@datacite.org"
43

54
# Set correct environment variables.
65
ENV HOME /home/app
@@ -14,7 +13,7 @@ RUN usermod -a -G docker_env app
1413
CMD ["/sbin/my_init"]
1514

1615
# Install Ruby 3.1.4
17-
RUN bash -lc 'rvm --default use ruby-3.1.4'
16+
RUN bash -lc 'rvm --default use ruby-3.2.10'
1817

1918
# Update installed APT packages
2019
RUN apt-get update && apt-get upgrade -y -o Dpkg::Options::="--force-confold" && \

0 commit comments

Comments
 (0)