File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change 11FROM debian:stable-slim as builder
22ARG CABAL_VERSION=3.6.2.0
33ARG GHC_VERSION=8.10.7
4- ARG NODE_VERSION=1.34.1
4+ ARG NODE_VERSION=1.35.3
55
66WORKDIR /code
77
@@ -60,6 +60,15 @@ RUN git clone https://github.com/input-output-hk/libsodium && \
6060ENV LD_LIBRARY_PATH="/usr/local/lib:$LD_LIBRARY_PATH"
6161ENV PKG_CONFIG_PATH="/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH"
6262
63+ # secp256k1
64+ RUN git clone https://github.com/bitcoin-core/secp256k1 && \
65+ cd secp256k1 && \
66+ git checkout ac83be33 && \
67+ ./autogen.sh && \
68+ ./configure --enable-module-schnorrsig --enable-experimental && \
69+ make && \
70+ make install
71+
6372# Install cardano-node
6473ENV NODE_VERSION=${NODE_VERSION}
6574RUN echo "Building tags/${NODE_VERSION}..." \
You can’t perform that action at this time.
0 commit comments