Skip to content

Commit

Permalink
Merge pull request #2753 from sul-dlss/docker-base-image-ruby31
Browse files Browse the repository at this point in the history
Updating ruby version in docker images
  • Loading branch information
lwrubel authored Sep 26, 2022
2 parents 46e161e + 91d0b7f commit 19e738e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker/app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This Dockerfile is optimized for running in development. That means it trades
# build speed for size. If we were using this for production, we might instead
# optimize for a smaller size at the cost of a slower build.
FROM ruby:3.0-alpine
FROM ruby:3.1-alpine

# postgresql-client is required for invoke.sh
RUN apk add --update --no-cache \
Expand Down
2 changes: 1 addition & 1 deletion docker/workers/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This Dockerfile is optimized for running in development. That means it trades
# build speed for size. If we were using this for production, we might instead
# optimize for a smaller size at the cost of a slower build.
FROM ruby:3.0.3-alpine
FROM ruby:3.1-alpine

# postgresql-client is required for invoke.sh
RUN apk add --update --no-cache \
Expand Down

0 comments on commit 19e738e

Please sign in to comment.