From 98972aa72da202351775c20ab07de22af2788253 Mon Sep 17 00:00:00 2001 From: Igor Alexandrov Date: Wed, 15 Jan 2025 10:52:03 +0400 Subject: [PATCH] Added libyaml-dev to the Rails Dockerfile example --- content/guides/ruby/containerize.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/guides/ruby/containerize.md b/content/guides/ruby/containerize.md index 83f0c3933e..ed87769c05 100644 --- a/content/guides/ruby/containerize.md +++ b/content/guides/ruby/containerize.md @@ -67,7 +67,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 curl git pkg-config && \ + apt-get install --no-install-recommends -y build-essential curl git pkg-config libyaml-dev && \ rm -rf /var/lib/apt/lists /var/cache/apt/archives # Install JavaScript dependencies and Node.js for asset compilation