From d8d75a88946a2a45570d29ee151947bb522ad279 Mon Sep 17 00:00:00 2001 From: Dan Vasilescu Date: Tue, 10 Feb 2026 16:02:27 -0500 Subject: [PATCH] avoids a stale cache condition in CI-build --- Dockerfile | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index f91a45c016..1643de418d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -47,9 +47,21 @@ LABEL \ maintainer="BioSimulators Team " ENV DEBIAN_FRONTEND noninteractive -RUN apt -y update && apt install -y software-properties-common -RUN apt install -y --no-install-recommends curl python3.10 python3-pip build-essential dnsutils \ - apt-utils libfreetype6 fontconfig fonts-dejavu +RUN set -eux; \ + apt-get update; \ + apt-get install -y --no-install-recommends \ + software-properties-common \ + curl \ + python3.10 \ + python3-pip \ + build-essential \ + dnsutils \ + apt-utils \ + libfreetype6 \ + fontconfig \ + fonts-dejavu \ + ; \ + rm -rf /var/lib/apt/lists/* RUN mkdir -p /usr/local/app/vcell/lib && \ mkdir -p /usr/local/app/vcell/simulation && \