mirror of https://github.com/waku-org/nwaku.git
fix: copy libnegentropy.so from nim-build image (#2991)
We shouldn't assume it exists on the host. Introduced by: https://github.com/waku-org/nwaku/pull/2403 Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
1ff9f1dd67
commit
5a9703f35a
|
@ -7,7 +7,7 @@ ARG NIM_COMMIT
|
|||
ARG LOG_LEVEL=TRACE
|
||||
|
||||
# Get build tools and required header files
|
||||
RUN apk add --no-cache bash git build-base pcre-dev linux-headers curl jq
|
||||
RUN apk add --no-cache bash git build-base openssl-dev pcre-dev linux-headers curl jq
|
||||
|
||||
WORKDIR /app
|
||||
COPY . .
|
||||
|
@ -47,7 +47,7 @@ RUN apk add --no-cache libgcc pcre-dev libpq-dev bind-tools
|
|||
RUN ln -s /usr/lib/libpcre.so /usr/lib/libpcre.so.3
|
||||
|
||||
# Fix for 'Error loading shared library libnegentropy.so: No such file or directory'
|
||||
ADD ./libnegentropy.so ./
|
||||
COPY --from=nim-build /app/libnegentropy.so ./
|
||||
|
||||
# Copy to separate location to accomodate different MAKE_TARGET values
|
||||
COPY --from=nim-build /app/build/$MAKE_TARGET /usr/local/bin/
|
||||
|
|
Loading…
Reference in New Issue