Remove deprecated GMP dependency

This commit is contained in:
Mariusz Kogen 2023-09-15 11:49:13 +02:00 committed by Rusty Russell
parent 9357a32890
commit a0c86b77c7

View file

@ -89,13 +89,6 @@ RUN apt-get install -y --no-install-recommends unzip tclsh \
&& make install && cd .. && rm sqlite-src-3290000.zip && rm -rf sqlite-src-3290000
USER root
RUN wget -q https://gmplib.org/download/gmp/gmp-6.1.2.tar.xz \
&& tar xvf gmp-6.1.2.tar.xz \
&& cd gmp-6.1.2 \
&& ./configure --disable-assembly \
&& make \
&& make install && cd .. && rm gmp-6.1.2.tar.xz && rm -rf gmp-6.1.2
ENV RUST_PROFILE=release
ENV PATH=$PATH:/root/.cargo/bin/
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y