File tree 2 files changed +16
-0
lines changed
2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -104,6 +104,14 @@ RUN curl -o make.tgz -fsSL https://ftp.gnu.org/gnu/make/make-4.4.tar.gz && \
104
104
make install && \
105
105
ln -sf /usr/local/bin/make /usr/bin/make
106
106
107
+ RUN curl -o automake.tgz -fsSL https://ftp.gnu.org/gnu/automake/automake-1.17.tar.xz && \
108
+ tar -xvf automake.tgz && \
109
+ cd automake-1.17 && \
110
+ ./configure && \
111
+ make && \
112
+ make install && \
113
+ ln -sf /usr/local/bin/automake /usr/bin/automake
114
+
107
115
RUN git clone https://github.com/static-php/gnu-frankenphp --depth=1 /frankenphp
108
116
WORKDIR /frankenphp
109
117
Original file line number Diff line number Diff line change @@ -100,6 +100,14 @@ RUN curl -o make.tgz -fsSL https://ftp.gnu.org/gnu/make/make-4.4.tar.gz && \
100
100
make install && \
101
101
ln -sf /usr/local/bin/make /usr/bin/make
102
102
103
+ RUN curl -o automake.tgz -fsSL https://ftp.gnu.org/gnu/automake/automake-1.17.tar.xz && \
104
+ tar -xvf automake.tgz && \
105
+ cd automake-1.17 && \
106
+ ./configure && \
107
+ make && \
108
+ make install && \
109
+ ln -sf /usr/local/bin/automake /usr/bin/automake
110
+
103
111
EOF
104
112
fi
105
113
You can’t perform that action at this time.
0 commit comments