mirror of
https://github.com/logos-messaging/logos-messaging-nim.git
synced 2026-05-20 17:29:32 +00:00
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
ebea143031
commit
b2cbc7cbca
@ -7,7 +7,7 @@ ARG NIM_COMMIT
|
|||||||
ARG LOG_LEVEL=TRACE
|
ARG LOG_LEVEL=TRACE
|
||||||
|
|
||||||
# Get build tools and required header files
|
# 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
|
WORKDIR /app
|
||||||
COPY . .
|
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
|
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'
|
# 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 to separate location to accomodate different MAKE_TARGET values
|
||||||
COPY --from=nim-build /app/build/$MAKE_TARGET /usr/local/bin/
|
COPY --from=nim-build /app/build/$MAKE_TARGET /usr/local/bin/
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user