Skip to content

Commit d8d75a8

Browse files
committed
avoids a stale cache condition in CI-build
1 parent f6e94f3 commit d8d75a8

1 file changed

Lines changed: 15 additions & 3 deletions

File tree

Dockerfile

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,21 @@ LABEL \
4747
maintainer="BioSimulators Team <info@biosimulators.org>"
4848

4949
ENV DEBIAN_FRONTEND noninteractive
50-
RUN apt -y update && apt install -y software-properties-common
51-
RUN apt install -y --no-install-recommends curl python3.10 python3-pip build-essential dnsutils \
52-
apt-utils libfreetype6 fontconfig fonts-dejavu
50+
RUN set -eux; \
51+
apt-get update; \
52+
apt-get install -y --no-install-recommends \
53+
software-properties-common \
54+
curl \
55+
python3.10 \
56+
python3-pip \
57+
build-essential \
58+
dnsutils \
59+
apt-utils \
60+
libfreetype6 \
61+
fontconfig \
62+
fonts-dejavu \
63+
; \
64+
rm -rf /var/lib/apt/lists/*
5365

5466
RUN mkdir -p /usr/local/app/vcell/lib && \
5567
mkdir -p /usr/local/app/vcell/simulation && \

0 commit comments

Comments
 (0)