Skip to content
This repository was archived by the owner on Sep 12, 2025. It is now read-only.

Commit 5081920

Browse files
authored
Add protobuf-devel to Dockerfiles for Rocky 8 and 9 builds (#14)
This ensures protobuf headers and libraries are available during build, which may be required for dependencies or future compilation steps.
1 parent 7a6549c commit 5081920

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

images/docker/cbdb/build/rocky8/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,8 @@ RUN dnf makecache && \
132132
dnf install -y -d0 --enablerepo=devel \
133133
libuv-devel \
134134
libyaml-devel \
135-
perl-IPC-Run && \
135+
perl-IPC-Run \
136+
protobuf-devel && \
136137
dnf clean all && \
137138
cd && XERCES_LATEST_RELEASE=3.3.0 && \
138139
wget -nv "https://archive.apache.org/dist/xerces/c/3/sources/xerces-c-${XERCES_LATEST_RELEASE}.tar.gz" && \

images/docker/cbdb/build/rocky9/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,8 @@ RUN dnf makecache && \
136136
dnf install -y --enablerepo=crb \
137137
libuv-devel \
138138
libyaml-devel \
139-
perl-IPC-Run && \
139+
perl-IPC-Run \
140+
protobuf-devel && \
140141
dnf clean all && \
141142
cd && XERCES_LATEST_RELEASE=3.3.0 && \
142143
wget -nv "https://archive.apache.org/dist/xerces/c/3/sources/xerces-c-${XERCES_LATEST_RELEASE}.tar.gz" && \

0 commit comments

Comments
 (0)