Merge pull request #132 from AlonzoRicardo/master

Compile sqlite to enable wallet descriptors
This commit is contained in:
Rui Marinho 2023-03-18 17:47:38 +00:00 committed by GitHub
commit 1586a57a07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 0 deletions

View File

@ -39,6 +39,7 @@ RUN apk --no-cache add libevent-dev
RUN apk --no-cache add libressl RUN apk --no-cache add libressl
RUN apk --no-cache add libtool RUN apk --no-cache add libtool
RUN apk --no-cache add linux-headers RUN apk --no-cache add linux-headers
RUN apk --no-cache add sqlite-dev
RUN apk --no-cache add zeromq-dev RUN apk --no-cache add zeromq-dev
RUN set -ex \ RUN set -ex \
&& for key in \ && for key in \
@ -75,6 +76,7 @@ RUN ./configure LDFLAGS=-L`ls -d /opt/db*`/lib/ CPPFLAGS=-I`ls -d /opt/db*`/incl
--with-gui=no \ --with-gui=no \
--with-utils \ --with-utils \
--with-libs \ --with-libs \
--with-sqlite=yes \
--with-daemon --with-daemon
RUN make -j4 RUN make -j4
RUN make install RUN make install
@ -97,6 +99,7 @@ RUN apk --no-cache add \
boost-filesystem \ boost-filesystem \
boost-system \ boost-system \
boost-thread \ boost-thread \
sqlite-dev \
libevent \ libevent \
libzmq \ libzmq \
su-exec su-exec

View File

@ -39,6 +39,7 @@ RUN apk --no-cache add libevent-dev
RUN apk --no-cache add libressl RUN apk --no-cache add libressl
RUN apk --no-cache add libtool RUN apk --no-cache add libtool
RUN apk --no-cache add linux-headers RUN apk --no-cache add linux-headers
RUN apk --no-cache add sqlite-dev
RUN apk --no-cache add zeromq-dev RUN apk --no-cache add zeromq-dev
RUN set -ex \ RUN set -ex \
&& for key in \ && for key in \
@ -88,6 +89,7 @@ RUN ./configure LDFLAGS=-L`ls -d /opt/db*`/lib/ CPPFLAGS=-I`ls -d /opt/db*`/incl
--with-gui=no \ --with-gui=no \
--with-utils \ --with-utils \
--with-libs \ --with-libs \
--with-sqlite=yes \
--with-daemon --with-daemon
RUN make -j4 RUN make -j4
RUN make install RUN make install
@ -112,6 +114,7 @@ RUN apk --no-cache add \
boost-thread \ boost-thread \
libevent \ libevent \
libzmq \ libzmq \
sqlite-dev \
su-exec su-exec
ENV BITCOIN_DATA=/home/bitcoin/.bitcoin ENV BITCOIN_DATA=/home/bitcoin/.bitcoin

View File

@ -39,6 +39,7 @@ RUN apk --no-cache add libevent-dev
RUN apk --no-cache add libressl RUN apk --no-cache add libressl
RUN apk --no-cache add libtool RUN apk --no-cache add libtool
RUN apk --no-cache add linux-headers RUN apk --no-cache add linux-headers
RUN apk --no-cache add sqlite-dev
RUN apk --no-cache add zeromq-dev RUN apk --no-cache add zeromq-dev
RUN set -ex \ RUN set -ex \
&& for key in \ && for key in \
@ -92,6 +93,7 @@ RUN ./configure LDFLAGS=-L`ls -d /opt/db*`/lib/ CPPFLAGS=-I`ls -d /opt/db*`/incl
--with-gui=no \ --with-gui=no \
--with-utils \ --with-utils \
--with-libs \ --with-libs \
--with-sqlite=yes \
--with-daemon --with-daemon
RUN make -j4 RUN make -j4
RUN make install RUN make install
@ -114,6 +116,7 @@ RUN apk --no-cache add \
boost-filesystem \ boost-filesystem \
boost-system \ boost-system \
boost-thread \ boost-thread \
sqlite-dev \
libevent \ libevent \
libzmq \ libzmq \
su-exec su-exec