From e374d9686770b22392d8d2efcf3949f7e720ef42 Mon Sep 17 00:00:00 2001 From: Kunitsyn Oleg Date: Mon, 16 Jun 2025 12:53:33 +0200 Subject: [PATCH 1/2] [ODM-12622] Try fix-broken --- Earthfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Earthfile b/Earthfile index 5a3a6c6a..324a7086 100644 --- a/Earthfile +++ b/Earthfile @@ -83,7 +83,7 @@ r-api-client: # Gcc and other stuff for R source packages building RUN \ apt update && \ - apt install -y build-essential libssl-dev libcurl4-gnutls-dev curl && \ + apt install --fix-broken -y build-essential libssl-dev libcurl4-gnutls-dev curl && \ Rscript requirements.R COPY +build/generated generated From e0c6b08aaa09f350d8607e235489c1a7b887bed5 Mon Sep 17 00:00:00 2001 From: Kunitsyn Oleg Date: Mon, 16 Jun 2025 13:17:01 +0200 Subject: [PATCH 2/2] [ODM-12622] Fix deps for R --- Earthfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Earthfile b/Earthfile index 324a7086..c0d6e0a9 100644 --- a/Earthfile +++ b/Earthfile @@ -73,7 +73,7 @@ python-api-client: pypi-clean.sh r-api-client: - FROM r-base:4.5.0 + FROM r-base:4.5.1 WORKDIR /app CACHE /root/.cache @@ -83,7 +83,7 @@ r-api-client: # Gcc and other stuff for R source packages building RUN \ apt update && \ - apt install --fix-broken -y build-essential libssl-dev libcurl4-gnutls-dev curl && \ + apt install -y --allow-downgrades build-essential libssl-dev libcurl4-gnutls-dev curl libcom-err2=1.47.2-1+b1 && \ Rscript requirements.R COPY +build/generated generated