From 1790b2d50cc1084c65c79fa0a8a69c8bdaf4fada Mon Sep 17 00:00:00 2001 From: songtianlun Date: Wed, 5 Feb 2025 14:45:30 +0800 Subject: [PATCH] chore: update Dockerfile to include libvips42 - Added libvips42 to the package installation list in the Dockerfile - Ensures availability of the required library for image processing This update ensures that all necessary libraries are included, which may improve the functionality of any image processing features in the application. It minimizes potential runtime errors related to missing dependencies. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 69e505b..7e3ddf0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ WORKDIR /rails # Install base packages RUN apt-get update -qq && \ - apt-get install --no-install-recommends -y curl libjemalloc2 libvips sqlite3 libpq5 redis-tools && \ + apt-get install --no-install-recommends -y curl libjemalloc2 libvips sqlite3 libpq5 redis-tools libvips42 && \ rm -rf /var/lib/apt/lists /var/cache/apt/archives # Set production environment