Skip to content

Commit

Permalink
dante: add GUESS_FILE to support aarch64 (#211)
Browse files Browse the repository at this point in the history
  • Loading branch information
vimagick committed Mar 5, 2024
1 parent 059d877 commit fca25bf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions dante/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ ARG DANTE_FILE=dante.tar.gz
ARG DANTE_TEMP=dante
ARG DANTE_DEPS="build-essential curl"

ARG GUESS_URL="http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD"
ARG GUESS_FILE=config.guess

RUN set -xe \
&& apt-get update \
&& apt-get install -y $DANTE_DEPS \
Expand All @@ -20,6 +23,7 @@ RUN set -xe \
&& curl -sSL $DANTE_URL -o $DANTE_FILE \
&& echo "$DANTE_SHA1 *$DANTE_FILE" | sha1sum -c \
&& tar xzf $DANTE_FILE --strip 1 \
&& curl -sSL "$GUESS_URL" -o $GUESS_FILE \
&& ./configure \
&& make install \
&& cd .. \
Expand Down

0 comments on commit fca25bf

Please sign in to comment.