From e8463561522d42838995a98c569d9a754f64497d Mon Sep 17 00:00:00 2001 From: Brayan Henao Date: Thu, 26 Oct 2023 18:41:05 -0400 Subject: [PATCH] Update cflinuxfs3-dev dockefiles with the ESM packages that are having problems (#324) --- dockerfiles/cflinuxfs3-dev.Dockerfile | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/dockerfiles/cflinuxfs3-dev.Dockerfile b/dockerfiles/cflinuxfs3-dev.Dockerfile index 31d2772e2..0f0b122df 100644 --- a/dockerfiles/cflinuxfs3-dev.Dockerfile +++ b/dockerfiles/cflinuxfs3-dev.Dockerfile @@ -1,8 +1,13 @@ FROM cloudfoundry/cflinuxfs3 -RUN apt update +# Note: If this list starts to get long, we should consider using an external file to store the list of packages to remove. -# Remove ESM packages required for dependenciees - -## PHP -RUN apt remove libonig4 libwebp6 -y +RUN apt update && apt remove -y \ + libonig4 \ + libwebp6 \ + libruby2.5 \ + ruby \ + ruby2.5 \ + libldap2-dev \ + libssl-dev \ + libcurl4-openssl-dev \