-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: enable nidx search tests (#2628)
- Loading branch information
1 parent
ab7e349
commit e680e8a
Showing
5 changed files
with
118 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# | ||
# Dockerfile for nucliadb's index node, using the provided binaries | ||
# NOTE: Binaries should be built in the same image as this Dockerfile or older (for glibc compatibility) | ||
# For a version that compiles the binaries inside docker, see `Dockerfile.nidx` | ||
# | ||
|
||
FROM ubuntu:24.04 | ||
|
||
RUN apt update && apt install -y ca-certificates && rm -rf /var/lib/apt/lists/* | ||
COPY ./builds/nidx /usr/local/bin/nidx | ||
RUN chmod +x /usr/local/bin/nidx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters