Skip to content

Commit

Permalink
💚 Add libcurl4-openssl-dev
Browse files Browse the repository at this point in the history
Signed-off-by: vankichi <[email protected]>
  • Loading branch information
vankichi committed Jan 30, 2025
1 parent c3b5832 commit a728c95
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
3 changes: 2 additions & 1 deletion Makefile.d/tools.mk
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,8 @@ $(LIB_PATH)/libhdf5.a: $(LIB_PATH) \
&& make -j$(CORES) \
&& make install \
&& cd $(ROOTDIR) \
&& rm -rf $(TEMP_DIR)/hdf5.tar.gz $(TEMP_DIR)/hdf5
&& rm -rf $(TEMP_DIR)/hdf5.tar.gz $(TEMP_DIR)/hdf5 \
&& ldconfig

.PHONY: yq/install
## install yq
Expand Down
1 change: 0 additions & 1 deletion dockers/example/client/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ RUN --mount=type=bind,target=.,rw \
gcc \
libssl-dev \
unzip \
libhdf5-dev \
libaec-dev \
&& ldconfig \
&& echo "${LANG} UTF-8" > /etc/locale.gen \
Expand Down
1 change: 0 additions & 1 deletion dockers/tools/benchmark/job/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ RUN --mount=type=bind,target=.,rw \
gcc \
libssl-dev \
unzip \
libhdf5-dev \
libaec-dev \
&& ldconfig \
&& echo "${LANG} UTF-8" > /etc/locale.gen \
Expand Down
1 change: 0 additions & 1 deletion dockers/tools/cli/loadtest/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ RUN --mount=type=bind,target=.,rw \
gcc \
libssl-dev \
unzip \
libhdf5-dev \
libaec-dev \
&& ldconfig \
&& echo "${LANG} UTF-8" > /etc/locale.gen \
Expand Down
6 changes: 3 additions & 3 deletions hack/docker/gen/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -746,7 +746,7 @@ func main() {
"vald-benchmark-job": {
AppName: "job",
PackageDir: "tools/benchmark/job",
ExtraPackages: append(clangBuildDeps, "libhdf5-dev", "libaec-dev"),
ExtraPackages: append(clangBuildDeps, "libaec-dev"),
Preprocess: []string{
"make hdf5/install",
},
Expand Down Expand Up @@ -797,7 +797,7 @@ func main() {
"vald-loadtest": {
AppName: "loadtest",
PackageDir: "tools/cli/loadtest",
ExtraPackages: append(clangBuildDeps, "libhdf5-dev", "libaec-dev"),
ExtraPackages: append(clangBuildDeps, "libaec-dev"),
Preprocess: []string{
"make hdf5/install",
},
Expand Down Expand Up @@ -836,7 +836,7 @@ func main() {
"vald-example-client": {
AppName: "client",
PackageDir: "example/client",
ExtraPackages: append(clangBuildDeps, "libhdf5-dev", "libaec-dev"),
ExtraPackages: append(clangBuildDeps, "libaec-dev"),
Preprocess: []string{
"make hdf5/install",
},
Expand Down

0 comments on commit a728c95

Please sign in to comment.