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
14 changes: 7 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Comment on lines -24 to +29

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not a big fan of this, it makes it harder to tell where the package list ends and the next command begins.

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
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.4.9'

gem 'berkeley_library-logging', '~> 0.3.0'
gem 'berkeley_library-util', '~> 0.3'
gem 'bootsnap', require: false
gem 'bootstrap', '~> 5.3'
gem 'cssbundling-rails'
Expand Down
Loading
Loading