- Hardware: macOS on M3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# syntax = docker/dockerfile:1 | |
# Make sure RUBY_VERSION matches the Ruby version in .ruby-version and Gemfile | |
ARG RUBY_VERSION=3.3.0 | |
FROM registry.docker.com/library/ruby:$RUBY_VERSION-alpine as base | |
# Rails app lives here | |
WORKDIR /rails | |
# Set production environment |
OlderNewer