We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6e94f3 commit d8d75a8Copy full SHA for d8d75a8
1 file changed
Dockerfile
@@ -47,9 +47,21 @@ LABEL \
47
maintainer="BioSimulators Team <info@biosimulators.org>"
48
49
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
+RUN set -eux; \
+ apt-get update; \
+ 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/*
65
66
RUN mkdir -p /usr/local/app/vcell/lib && \
67
mkdir -p /usr/local/app/vcell/simulation && \
0 commit comments