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 1
1
FROM debian:stable-slim as builder
2
2
ARG CABAL_VERSION=3.6.2.0
3
3
ARG GHC_VERSION=8.10.7
4
- ARG NODE_VERSION=1.34.1
4
+ ARG NODE_VERSION=1.35.3
5
5
6
6
WORKDIR /code
7
7
@@ -60,6 +60,15 @@ RUN git clone https://github.com/input-output-hk/libsodium && \
60
60
ENV LD_LIBRARY_PATH="/usr/local/lib:$LD_LIBRARY_PATH"
61
61
ENV PKG_CONFIG_PATH="/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH"
62
62
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
+
63
72
# Install cardano-node
64
73
ENV NODE_VERSION=${NODE_VERSION}
65
74
RUN echo "Building tags/${NODE_VERSION}..." \
You can’t perform that action at this time.
0 commit comments