Skip to content

Commit bc282d2

Browse files
authored
Merge pull request #9 from cloudstruct/feat/upgrade-1353
feat: upgrade to 1.35.3
2 parents 584f3b7 + b40d25e commit bc282d2

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

Dockerfile

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM debian:stable-slim as builder
22
ARG CABAL_VERSION=3.6.2.0
33
ARG GHC_VERSION=8.10.7
4-
ARG NODE_VERSION=1.34.1
4+
ARG NODE_VERSION=1.35.3
55

66
WORKDIR /code
77

@@ -60,6 +60,15 @@ RUN git clone https://github.com/input-output-hk/libsodium && \
6060
ENV LD_LIBRARY_PATH="/usr/local/lib:$LD_LIBRARY_PATH"
6161
ENV 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
6473
ENV NODE_VERSION=${NODE_VERSION}
6574
RUN echo "Building tags/${NODE_VERSION}..." \

0 commit comments

Comments
 (0)