Skip to content

Commit 3bf467e

Browse files
authored
alpine: add a missing dependency library (#19)
This modification fix the following error. ```console $ docker run alpine-groonga-test-01 Error loading shared library libgomp.so.1: No such file or directory (needed by /usr/lib/libgroonga.so.0) Error relocating /usr/lib/libgroonga.so.0: GOMP_parallel: symbol not found Error relocating11 /usr/lib/libgroonga.so.0: GOMP_single_start: symbol not found Error relocating /usr/lib/libgroonga.so.0: omp_get_num_threads: symbol not found Error relocating /usr/lib/libgroonga.so.0: GOMP_barrier: symbol not found Error relocating /usr/lib/libgroonga.so.0: omp_get_thread_num: symbol not found ``` llama.cpp uses OpenMP. However, we had not installed libgomp in alpine docker image. So, we install libgomp in alpine docker image in this docker image in this modification.
1 parent d09c0af commit 3bf467e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

alpine/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ RUN \
6565
libarrow \
6666
libedit \
6767
libevent \
68+
libgomp \
6869
libstemmer \
6970
lz4 \
7071
msgpack-c \

0 commit comments

Comments
 (0)