File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -19,28 +19,25 @@ RUN apt-get update && \
19
19
curl \
20
20
pkg-config
21
21
22
- RUN set -o pipefail \
23
- && curl https://ftp.gnu.org/gnu/autoconf/autoconf-${AUTOCONF_VERSION}.tar.gz | tar -zxf - \
22
+ SHELL [ "/bin/bash" , "-o" , " pipefail" , "-c" ]
23
+ RUN curl https://ftp.gnu.org/gnu/autoconf/autoconf-${AUTOCONF_VERSION}.tar.gz | tar -zxf - \
24
24
&& cd autoconf-${AUTOCONF_VERSION} \
25
25
&& ./configure --prefix=/usr/local \
26
26
&& make \
27
27
&& make install
28
- RUN set -o pipefail \
29
- && curl https://ftp.gnu.org/gnu/automake/automake-${AUTOMAKE_VERSION}.tar.gz | tar -xzf - \
28
+ RUN curl https://ftp.gnu.org/gnu/automake/automake-${AUTOMAKE_VERSION}.tar.gz | tar -xzf - \
30
29
&& cd automake-${AUTOMAKE_VERSION} \
31
30
&& ./configure --prefix=/usr/local \
32
31
&& make \
33
32
&& make install
34
- RUN set -o pipefail \
35
- && curl https://ftp.gnu.org/gnu/autoconf-archive/autoconf-archive-${AUTOCONF_ARCHIVE_VERSION}.tar.xz | xz -cd - | tar -xf - \
33
+ RUN curl https://ftp.gnu.org/gnu/autoconf-archive/autoconf-archive-${AUTOCONF_ARCHIVE_VERSION}.tar.xz | xz -cd - | tar -xf - \
36
34
&& cd autoconf-archive-${AUTOCONF_ARCHIVE_VERSION} \
37
35
&& ./configure --prefix=/usr/local \
38
36
&& make \
39
37
&& make install
40
38
41
39
# https://stackoverflow.com/questions/8811381/possibly-undefined-macro-ac-msg-error/49103418#49103418
42
- RUN set -o pipefail \
43
- && cp /usr/local/share/aclocal/*.m4 /usr/share/aclocal \
40
+ RUN cp /usr/local/share/aclocal/*.m4 /usr/share/aclocal \
44
41
&& cp /usr/share/aclocal/*.m4 /usr/local/share/aclocal
45
42
46
43
VOLUME /src
You can’t perform that action at this time.
0 commit comments