2023-08-18 22:36:48 -04:00
|
|
|
# syntax = docker/dockerfile:1
|
|
|
|
|
2024-06-21 23:35:36 -04:00
|
|
|
# This Dockerfile is designed for production, not development. Use with Kamal or build'n'run by hand:
|
|
|
|
# docker build -t my-app .
|
|
|
|
# docker run -d -p 80:80 -p 443:443 --name my-app -e RAILS_MASTER_KEY=<value from config/master.key> my-app
|
|
|
|
|
|
|
|
# For a containerized dev environment, see Dev Containers: https://guides.rubyonrails.org/getting_started_with_devcontainer.html
|
|
|
|
|
|
|
|
# Make sure RUBY_VERSION matches the Ruby version in .ruby-version
|
|
|
|
ARG RUBY_VERSION=3.3.1
|
|
|
|
FROM docker.io/library/ruby:$RUBY_VERSION-slim AS base
|
2023-03-12 10:27:02 -04:00
|
|
|
|
2023-03-12 10:39:39 -04:00
|
|
|
# Rails app lives here
|
|
|
|
WORKDIR /rails
|
|
|
|
|
2024-06-21 23:35:36 -04:00
|
|
|
# Install base packages
|
|
|
|
RUN apt-get update -qq && \
|
|
|
|
apt-get install --no-install-recommends -y curl libjemalloc2 libsqlite3-0 libvips && \
|
|
|
|
rm -rf /var/lib/apt/lists /var/cache/apt/archives
|
|
|
|
|
2023-03-12 10:27:02 -04:00
|
|
|
# Set production environment
|
2023-08-18 22:36:48 -04:00
|
|
|
ENV RAILS_ENV="production" \
|
|
|
|
BUNDLE_DEPLOYMENT="1" \
|
|
|
|
BUNDLE_PATH="/usr/local/bundle" \
|
|
|
|
BUNDLE_WITHOUT="development"
|
|
|
|
|
|
|
|
# Throw-away build stage to reduce size of final image
|
2024-06-21 23:35:36 -04:00
|
|
|
FROM base AS build
|
2023-08-18 22:36:48 -04:00
|
|
|
|
|
|
|
# Install packages needed to build gems
|
|
|
|
RUN apt-get update -qq && \
|
2024-06-21 23:35:36 -04:00
|
|
|
apt-get install --no-install-recommends -y build-essential git pkg-config && \
|
|
|
|
rm -rf /var/lib/apt/lists /var/cache/apt/archives
|
2023-03-12 10:27:02 -04:00
|
|
|
|
|
|
|
# Install application gems
|
|
|
|
COPY Gemfile Gemfile.lock ./
|
2023-08-18 22:36:48 -04:00
|
|
|
RUN bundle install && \
|
|
|
|
rm -rf ~/.bundle/ "${BUNDLE_PATH}"/ruby/*/cache "${BUNDLE_PATH}"/ruby/*/bundler/gems/*/.git && \
|
|
|
|
bundle exec bootsnap precompile --gemfile
|
|
|
|
|
2023-03-12 10:27:02 -04:00
|
|
|
# Copy application code
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
# Precompile bootsnap code for faster boot times
|
2023-08-18 22:36:48 -04:00
|
|
|
RUN bundle exec bootsnap precompile app/ lib/
|
2023-03-12 10:27:02 -04:00
|
|
|
|
|
|
|
# Precompiling assets for production without requiring secret RAILS_MASTER_KEY
|
2023-08-18 22:36:48 -04:00
|
|
|
RUN SECRET_KEY_BASE_DUMMY=1 ./bin/rails assets:precompile
|
|
|
|
|
2023-03-12 10:27:02 -04:00
|
|
|
|
2024-06-21 23:35:36 -04:00
|
|
|
|
|
|
|
|
2023-08-18 22:36:48 -04:00
|
|
|
# Final stage for app image
|
|
|
|
FROM base
|
|
|
|
|
|
|
|
# Copy built artifacts: gems, application
|
2024-06-21 23:35:36 -04:00
|
|
|
COPY --from=build "${BUNDLE_PATH}" "${BUNDLE_PATH}"
|
2023-08-18 22:36:48 -04:00
|
|
|
COPY --from=build /rails /rails
|
|
|
|
|
|
|
|
# Run and own only the runtime files as a non-root user for security
|
2024-06-21 23:35:36 -04:00
|
|
|
RUN groupadd --system --gid 1000 rails && \
|
|
|
|
useradd rails --uid 1000 --gid 1000 --create-home --shell /bin/bash && \
|
2023-08-18 22:36:48 -04:00
|
|
|
chown -R rails:rails db log storage tmp
|
2024-06-21 23:35:36 -04:00
|
|
|
USER 1000:1000
|
2024-01-26 20:53:20 -05:00
|
|
|
|
2023-08-18 22:36:48 -04:00
|
|
|
# Entrypoint prepares the database.
|
2023-03-12 10:27:02 -04:00
|
|
|
ENTRYPOINT ["/rails/bin/docker-entrypoint"]
|
2023-08-18 22:36:48 -04:00
|
|
|
|
|
|
|
# Start the server by default, this can be overwritten at runtime
|
2023-03-12 10:27:02 -04:00
|
|
|
EXPOSE 3000
|
2023-09-10 11:37:37 -04:00
|
|
|
CMD ["./bin/rails", "server"]
|