File tree Expand file tree Collapse file tree 2 files changed +26
-2
lines changed
Expand file tree Collapse file tree 2 files changed +26
-2
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,19 @@ WORKDIR /root
66
77RUN <<EOF
88 dnf install -y epel-release
9- dnf install -y curl pkg-config openssl ca-certificates openssl-devel patchelf autoconf automake make libtool unzip clang libatomic protobuf-c-compiler openssh-clients
9+ dnf install -y curl pkg-config openssl ca-certificates openssl-devel patchelf autoconf automake make libtool unzip clang libatomic openssh-clients wget
10+ EOF
11+
12+ RUN <<EOF
13+ # echo 1
14+ wget https://github.com/protocolbuffers/protobuf/archive/refs/tags/v3.21.12.zip
15+ unzip v3.21.12.zip
16+ cd protobuf-3.21.12
17+ autoupdate
18+ ./autogen.sh
19+ ./configure --prefix=/usr --disable-dependency-tracking
20+ make -j8
21+ make install
1022EOF
1123
1224RUN <<EOF
Original file line number Diff line number Diff line change @@ -6,7 +6,19 @@ WORKDIR /root
66
77RUN <<EOF
88 dnf install -y epel-release
9- dnf install -y curl pkg-config openssl ca-certificates openssl-devel patchelf autoconf automake make libtool unzip clang libatomic protobuf-c-compiler openssh-clients
9+ dnf install -y curl pkg-config openssl ca-certificates openssl-devel patchelf autoconf automake make libtool unzip clang libatomic openssh-clients wget
10+ EOF
11+
12+ RUN <<EOF
13+ # echo 1
14+ wget https://github.com/protocolbuffers/protobuf/archive/refs/tags/v3.21.12.zip
15+ unzip v3.21.12.zip
16+ cd protobuf-3.21.12
17+ autoupdate
18+ ./autogen.sh
19+ ./configure --prefix=/usr --disable-dependency-tracking
20+ make -j8
21+ make install
1022EOF
1123
1224RUN <<EOF
You can’t perform that action at this time.
0 commit comments