forked from RandyMcMillan/docker.shell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfedora33.dockerfile
More file actions
43 lines (37 loc) · 935 Bytes
/
fedora33.dockerfile
File metadata and controls
43 lines (37 loc) · 935 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
FROM fedora:34 as user
RUN dnf update -y && dnf install --setopt=install_weak_deps=False -y \
autoconf \
automake \
bison \
boost-devel \
bzip2 \
cmake \
gcc-c++ \
git \
libevent-devel \
libnatpmp-devel \
libtool \
make \
mingw64-gcc-c++.x86_64 \
mingw64-winpthreads-static.noarch \
miniupnpc-devel \
patch \
python3 \
qrencode-devel \
qt5-qtbase-devel \
qt5-qttools-devel \
ripgrep \
sqlite-devel \
valgrind \
vim \
which \
xz \
zeromq-devel
RUN git clone https://github.com/bitcoin/bitcoin && mkdir bitcoin/depends/SDKs
RUN make download -C bitcoin/depends
RUN git clone https://github.com/bitcoin-core/bitcoin-maintainer-tools
# avoid git complaints
RUN git config --global pull.rebase false && \
git config --global user.email "you@example.com" && \
git config --global user.name "Your Name"
WORKDIR /bitcoin