From ee416c77e6595dc23b2a3ec461c658f5ab581304 Mon Sep 17 00:00:00 2001 From: Raphael Nestler Date: Wed, 15 Jan 2025 14:47:19 +0100 Subject: [PATCH] Fix Docker cointainer build libyaml-dev got removed in the base image in https://github.com/docker-library/ruby/commit/7f078b1b01338e19130eb8b01cb7f35153ba6b04. While this change did get reverted in https://github.com/docker-library/ruby/commit/6f84caae95715928a3ed9c9753f844e03b3d5ff4 it will be removed in the next Ruby version, so we as well fix it now. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a363a01..68026f0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,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 libvips pkg-config libpq-dev nodejs npm yarn + apt-get install --no-install-recommends -y build-essential git libvips pkg-config libpq-dev libyaml-dev nodejs npm yarn # Install application gems COPY Gemfile Gemfile.lock ./