Skip to content

Docker container for Rails based on the new Heroku base image.

License

Notifications You must be signed in to change notification settings

flecto-io/docker-heroku-rails

Repository files navigation

Heroku Rails Docker Image

Docker container for Rails based on the Heroku base images.

Tags available

Tag format: <Heroku Buildpack version>-<Ruby version>

We try to stay up-to-date with the new supported Heroku images. If you see any new one on this page feel free to open a PR!

There are a couple of version numbers that we have to have in sync with Heroku. Check the Dockerfile for those versions and the links where the Heroku version is kept. If you see any new version feel free to open a PR!

Motivation

The Heroku base images for ruby got deprecated in favor of a more build-your-own Dockerfile strategy. But I still feel that a base image for Rails serves its purposes. There is no point for each developer to replicate much of the instructions I've used here. The more automation the better amirite?

Usage

The root folder for your Rails project must have a Gemfile and Gemfile.lock file. Then build a Dockerfile for your project with this image as base, and with other project-specific instructions FROM ghrc.io/flecto-io/heroku-rails:20-2.7.4.

Then you can either run it with standard Docker docker run --rm -ti your-project or, more commonly from a Docker Compose based development $ docker-compose up web.

For more details regarding local development with docker read this Heroku article

Post-run script

This container comes with a post-run script that:

  • Checks and install any missing gem.
  • Precompile your assets if you are in production mode (checks $RAILS_ENV value).
  • Run your own run other post-run scripts. Just add them to /app/.profile/ folder.

Subsequent runs will use cached changes. This is useful to avoid you from (1) having to rebuild the images each time there is a change on your Gemfile, (2) from having to run a shell just to deploy pending migrations, and (3) to precompile assets if you want to test production mode.

Changelog

  • 2023/12/29: Change organization to flecto-io
  • 2023/04/10: Remove copy of entire app folder into container. Copy only Gemfile to install bundler.
  • 2021/11/01: Change image ownership to Rnters organization. Upgrade to Heroku 20 build image.

License

MIT (see LICENSE file)

About

Docker container for Rails based on the new Heroku base image.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published