Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.4.9
3.4.10
16 changes: 8 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Target: base
# Includes system dependencies common to both dev and production.

FROM ruby:3.4.9 AS base
FROM ruby:3.4.10 AS base

# This is just metadata and doesn't actually "expose" this port. Rather, it
# tells other tools (e.g. Traefik) what port the service in this image is
Expand All @@ -21,12 +21,12 @@ RUN groupadd --system --gid $APP_UID $APP_USER && \
# Install standard packages from the Debian repository
RUN apt-get update -qq && \
apt-get install -y --no-install-recommends \
bash \
curl \
default-jre-headless \
ca-certificates \
libpq-dev \
libvips42 && \
bash \
curl \
default-jre-headless \
ca-certificates \
libpq-dev \
libvips42 && \
rm -rf /var/lib/apt/lists/*

#Install Node.js and Yarn from their own repositories
Expand Down Expand Up @@ -83,7 +83,7 @@ COPY --chown=geodata . .
# Run setup / scaffolding tasks
RUN yarn install --frozen-lockfile && \
RAILS_ENV=production SECRET_KEY_BASE_DUMMY=1 SKIP_YARN_INSTALL=1 \
rails assets:precompile log:clear tmp:create
rails assets:precompile log:clear tmp:create

# ============================================================================
# Target: production
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '3.4.9'
ruby '3.4.10'

gem 'berkeley_library-logging', '~> 0.3.0'
gem 'bootsnap', require: false
Expand Down
Loading
Loading