File tree 1 file changed +6
-1
lines changed
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,10 @@ ARG DEPENDENCIES="\
26
26
zip \
27
27
"
28
28
29
+ ARG BUILD_DEPENDENCIES="\
30
+ wget \
31
+ "
32
+
29
33
ARG PRODUCTION_DEPENDENCIES="\
30
34
curl \
31
35
graphviz \
@@ -59,6 +63,7 @@ ARG DEV_IMAGE=false
59
63
FROM $FROM_IMAGE:$TEXLIVE_TAG as build
60
64
61
65
ARG DEPENDENCIES
66
+ ARG BUILD_DEPENDENCIES
62
67
ARG PRODUCTION_DEPENDENCIES
63
68
ARG TEXLIVE_DEPENDENCIES
64
69
@@ -84,7 +89,7 @@ set -o xtrace
84
89
85
90
# Install OS dependencies
86
91
apt-get -qy update
87
- apt-get -qy install --no-install-recommends ${DEPENDENCIES}
92
+ apt-get -qy install --no-install-recommends ${DEPENDENCIES} ${BUILD_DEPENDENCIES}
88
93
if [ ${DEV_IMAGE} = false ] && echo ${TEXLIVE_TAG} | { ! grep -q latest-minimal; }
89
94
then
90
95
apt-get -qy install --no-install-recommends ${PRODUCTION_DEPENDENCIES}
You can’t perform that action at this time.
0 commit comments