Skip to content

Commit

Permalink
wget: fix build
Browse files Browse the repository at this point in the history
Signed-off-by: David Korczynski <[email protected]>
  • Loading branch information
DavidKorczynski committed Jan 24, 2025
1 parent 9e872a2 commit e91df0e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion projects/wget/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ RUN apt-get update && apt-get install -y \
gettext \
autogen \
autopoint \
autoconf \
autoconf-archive \
automake \
libtool \
Expand All @@ -39,6 +38,13 @@ RUN apt-get update && apt-get install -y \
libtasn1-bin \
libz-dev

RUN cd /usr/src && \
curl -oautoconf-2.71.tar.gz https://ftp.gnu.org/gnu/autoconf/autoconf-2.71.tar.gz && \
tar xf autoconf-2.71.tar.gz && \
cd autoconf-2.71 && \
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var && \
make install

ENV GNULIB_TOOL $SRC/gnulib/gnulib-tool
ENV GNULIB_SRCDIR $SRC/gnulib
RUN git clone https://gitlab.com/gnuwget/gnulib-mirror.git gnulib
Expand Down

0 comments on commit e91df0e

Please sign in to comment.