Add libyaml to docker builds

This commit is contained in:
Max Wofford 2025-05-13 14:55:28 -04:00
parent a5a65ed0c6
commit 4bd00f28a0
2 changed files with 2 additions and 1 deletions

View file

@ -37,7 +37,7 @@ FROM base AS build
# Install packages needed to build gems
RUN apt-get update -qq && \
apt-get install --no-install-recommends -y build-essential git pkg-config libpq-dev && \
apt-get install --no-install-recommends -y build-essential git pkg-config libpq-dev libyaml-dev && \
rm -rf /var/lib/apt/lists /var/cache/apt/archives
# Install application gems

View file

@ -6,6 +6,7 @@ RUN apt-get update -qq && \
build-essential \
git \
libpq-dev \
libyaml-dev \
postgresql-client \
libvips \
pkg-config \