Skip to content

Commit

Permalink
Fix Docker cointainer build
Browse files Browse the repository at this point in the history
libyaml-dev got removed in the base image in
docker-library/ruby@7f078b1.

While this change did get reverted in
docker-library/ruby@6f84caa
it will be removed in the next Ruby version, so we as well fix it now.
  • Loading branch information
rnestler committed Jan 15, 2025
1 parent 6342559 commit ee416c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 ./
Expand Down

0 comments on commit ee416c7

Please sign in to comment.