Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN CGO_ENABLED=0 go build -o /resolve-bin ./cmd/resolve

# =============================================
# Stage 2: Install Ruby gems (only rebuilds when Gemfile changes)
FROM ruby:4.0.3-slim-bookworm AS gem-builder
FROM ruby:4.0.4-slim-bookworm AS gem-builder

ENV APP_ROOT=/usr/src/app
WORKDIR $APP_ROOT
Expand Down Expand Up @@ -42,7 +42,7 @@ RUN RAILS_ENV=production bundle exec rake assets:precompile

# =============================================
# Stage 4: Runtime with all package managers
FROM ruby:4.0.3-slim-bookworm
FROM ruby:4.0.4-slim-bookworm

ENV APP_ROOT=/usr/src/app
ENV DATABASE_PORT=5432
Expand Down