Upgrade to Rails 7.2 (#465)

* Update to Rails 7.2

* run app:update

* restore

* update defaults

* beta

* beta

* app:update

* app:update

* enable defaults

* reconcile

* reconcile

* update puma
This commit is contained in:
Ryan Williams
2024-05-30 20:33:19 -07:00
committed by GitHub
parent 9123a93336
commit 190eb672eb
22 changed files with 264 additions and 244 deletions
+6 -4
View File
@@ -1,8 +1,8 @@
# syntax=docker/dockerfile:1
# syntax = docker/dockerfile:1
# Make sure RUBY_VERSION matches the Ruby version in .ruby-version and Gemfile
ARG RUBY_VERSION=3.3.1
FROM registry.docker.com/library/ruby:$RUBY_VERSION-slim as base
FROM docker.io/library/ruby:$RUBY_VERSION-slim as base
# OS Level Dependencies
RUN --mount=type=cache,target=/var/cache/apt \
@@ -19,7 +19,9 @@ RUN --mount=type=cache,target=/var/cache/apt \
libpq-dev \
postgresql-client \
libvips \
curl
curl \
libjemalloc2 \
pkg-config
ENV LANG=C.UTF-8 \
BUNDLE_JOBS=4 \
@@ -33,4 +35,4 @@ ENTRYPOINT ["./bin/docker-entrypoint-development"]
EXPOSE 3000
CMD ["bundle", "exec", "rails", "s", "-b", "0.0.0.0"]
CMD ["./bin/rails", "server"]