mirror of https://github.com/waku-org/nwaku.git
Fix Docker image - missing librln.so file (#406)
This commit is contained in:
parent
cc962f2dd5
commit
307a49bb78
|
@ -42,6 +42,9 @@ RUN ln -s /usr/lib/libpcre.so /usr/lib/libpcre.so.3
|
|||
# Copy to separate location to accomodate different MAKE_TARGET values
|
||||
COPY --from=nim-build /app/build/$MAKE_TARGET /usr/local/bin/
|
||||
|
||||
# Fix for 'Error loading shared library vendor/rln/target/debug/librln.so: No such file or directory'
|
||||
COPY --from=nim-build /app/vendor/rln/target/debug/librln.so vendor/rln/target/debug/librln.so
|
||||
|
||||
# Symlink the correct wakunode binary
|
||||
RUN ln -sv /usr/local/bin/$MAKE_TARGET /usr/bin/wakunode
|
||||
|
||||
|
|
Loading…
Reference in New Issue