Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use latest versions of config.guess and config.sub #10

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion 1.8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,17 @@ RUN apk add --no-cache tcl bash openssl
RUN apk add --no-cache --virtual egg-deps tcl-dev wget ca-certificates make tar gpgme build-base openssl-dev \
&& wget ftp://ftp.eggheads.org/pub/eggdrop/source/1.8/eggdrop-1.8.3.tar.gz \
&& wget ftp://ftp.eggheads.org/pub/eggdrop/source/1.8/eggdrop-1.8.3.tar.gz.asc \
&& gpg --keyserver ha.pool.sks-keyservers.net --recv-key E01C240484DE7DBE190FE141E7667DE1D1A39AFF \
&& ( gpg --keyserver Zpool.sks-keyservers.net --recv-keys E01C240484DE7DBE190FE141E7667DE1D1A39AFF \
|| gpg --keyserver pgp.mit.edu --recv-keys E01C240484DE7DBE190FE141E7667DE1D1A39AFF \
|| gpg --keyserver ha.pool.sks-keyservers.net --recv-keys E01C240484DE7DBE190FE141E7667DE1D1A39AFF \
|| gpg --keyserver keyserver.pgp.com --recv-keys E01C240484DE7DBE190FE141E7667DE1D1A39AFF ) \
&& gpg --batch --verify eggdrop-1.8.3.tar.gz.asc eggdrop-1.8.3.tar.gz \
&& rm eggdrop-1.8.3.tar.gz.asc \
&& tar -zxvf eggdrop-1.8.3.tar.gz \
&& rm eggdrop-1.8.3.tar.gz \
&& wget http://git.savannah.gnu.org/cgit/config.git/plain/config.guess \
&& wget http://git.savannah.gnu.org/cgit/config.git/plain/config.sub \
&& mv config.guess config.sub eggdrop-1.8.3/misc \
&& ( cd eggdrop-1.8.3 \
&& ./configure \
&& make config \
Expand Down