aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mikisabate@gmail.com>2025-07-01 07:50:51 +0200
committerMiquel Sabaté Solà <mikisabate@gmail.com>2025-07-01 08:53:33 +0200
commit24714068efc5866999311ad482d54f5c7a90c449 (patch)
tree6823253d00b9b9503c5fdba87b37242a3b7727a1 /Dockerfile
parentffb794a7255b8cbb89d2a4f5490feb59911b8014 (diff)
downloadoperum-24714068efc5866999311ad482d54f5c7a90c449.tar.gz
operum-24714068efc5866999311ad482d54f5c7a90c449.zip
Upgrade Ruby and gems to patch-level releases
Upgrade ruby and gem dependencies to their latest patch-level releases. As an unexpected surprise, this bump needed libyaml-dev in the building stage for docker. Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index c1c0d2a..6ebc427 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,7 +1,7 @@
# syntax = docker/dockerfile:1
# Make sure RUBY_VERSION matches the Ruby version in .ruby-version and Gemfile
-ARG RUBY_VERSION=3.4.1
+ARG RUBY_VERSION=3.4.4
FROM registry.docker.com/library/ruby:$RUBY_VERSION-slim AS base
# Rails app lives here
@@ -19,7 +19,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
+ apt-get install --no-install-recommends -y build-essential git libvips pkg-config libyaml-dev
# Install application gems
COPY Gemfile Gemfile.lock ./