Skip to content
Merged
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
16 changes: 8 additions & 8 deletions .docker/app/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,27 +19,27 @@ USER root
# gcompat is added to allow m1 build of nokogiri
RUN apk add -U --no-cache \
jemalloc=5.3.0-r6 \
bash=5.2.37-r0 \
busybox=1.37.0-r19 \
bash=5.3.3-r1 \
busybox=1.37.0-r29 \
gcompat=1.1.0-r4 \
imagemagick=7.1.2.8-r0 \
libxslt=1.1.43-r3 \
postgresql16-client=16.11-r0 \
sqlite=3.49.2-r1 \
sqlite=3.51.1-r0 \
shared-mime-info=2.4-r6 \
ssl_client=1.37.0-r19 \
ssl_client=1.37.0-r29 \
tzdata=2025b-r0 && \
apk add -U --no-cache --virtual build-dependencies \
build-base=0.5-r3 \
yaml=0.2.5-r2 \
yaml-dev=0.2.5-r2 \
git=2.49.1-r0 \
libjpeg-turbo-dev=3.1.0-r0 \
git=2.52.0-r0 \
libjpeg-turbo-dev=3.1.2-r0 \
libxslt-dev=1.1.43-r3 \
libxml2-dev=2.13.9-r0 \
postgresql16-dev=16.11-r0 \
sqlite-dev=3.49.2-r1 \
nodejs=22.16.0-r2 \
sqlite-dev=3.51.1-r0 \
nodejs=24.11.1-r0 \
yarn=1.22.22-r1 && \
if [ "${RAILS_ENV}" = "production" ]; then bundle config set --local without "development test"; fi && \
bundle install --jobs=8 && \
Expand Down