Commit aeacf34 1 parent 7969829 commit aeacf34 Copy full SHA for aeacf34
File tree 1 file changed +7
-1
lines changed
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -79,13 +79,19 @@ RUN make -C ./build install
79
79
80
80
FROM alpine:3.20 AS final
81
81
82
+ ARG KNOTS_VERSION
83
+
82
84
COPY --from=builder /usr/local/bin/* /usr/local/bin/
85
+ COPY --from=builder /tmp/bitcoin-${KNOTS_VERSION}/test/functional/test_framework /opt/bitcoin/test/functional/test_framework
86
+ COPY --from=builder /tmp/bitcoin-${KNOTS_VERSION}/contrib/signet/miner /opt/bitcoin/contrib/signet/miner
83
87
84
88
RUN apk add --no-cache \
89
+ python3 \
85
90
tor \
86
91
&& adduser -D bitcoin \
87
92
&& mkdir /home/bitcoin/.bitcoin \
88
- && chown bitcoin:bitcoin /home/bitcoin/.bitcoin
93
+ && chown bitcoin:bitcoin /home/bitcoin/.bitcoin \
94
+ && ln -s /opt/bitcoin/contrib/signet/miner /usr/local/bin/miner
89
95
90
96
USER bitcoin
91
97
You can’t perform that action at this time.
0 commit comments