Skip to content

Commit

Permalink
fix: copy libnegentropy.so from nim-build image (#2991)
Browse files Browse the repository at this point in the history
We shouldn't assume it exists on the host.

Introduced by:
#2403

Signed-off-by: Jakub Sokołowski <[email protected]>
  • Loading branch information
jakubgs authored and gabrielmer committed Aug 22, 2024
1 parent 1ff9f1d commit 5a9703f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 . .
Expand Down Expand Up @@ -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/
Expand Down

0 comments on commit 5a9703f

Please sign in to comment.