Rails Base Image (ARM + AMD)
219
Here is a short, clean, professional Docker Hub description — just enough but still high-quality:
Multi-arch base image for Ruby on Rails apps. Includes Ruby 3.3, Node.js 20, Yarn, and all required native libraries for building Rails, ActiveRecord, and popular gems.
FROM vikasavnish/rails-base:stable
WORKDIR /app
COPY Gemfile Gemfile.lock ./
RUN bundle install
COPY . .
CMD ["bundle", "exec", "rails", "server", "-b", "0.0.0.0"]
docker pull vikasavnish/rails-base:stable
This image provides a stable, reliable foundation for building and running Rails applications across both ARM (Apple Silicon) and AMD/Intel servers.
Content type
Image
Digest
sha256:7c29073a8…
Size
276.5 MB
Last updated
10 months ago
docker pull vikasavnish/rails-base:stable