mirror of https://github.com/waku-org/nwaku.git
update docker files
This commit is contained in:
parent
0ffa957b34
commit
2e134dd4ba
|
@ -46,6 +46,9 @@ RUN apk add --no-cache libgcc pcre-dev libpq-dev
|
||||||
# Fix for 'Error loading shared library libpcre.so.3: No such file or directory'
|
# Fix for 'Error loading shared library libpcre.so.3: No such file or directory'
|
||||||
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'
|
||||||
|
ADD ./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/
|
||||||
|
|
||||||
|
|
|
@ -19,6 +19,9 @@ RUN apt-get update &&\
|
||||||
# Fix for 'Error loading shared library libpcre.so.3: No such file or directory'
|
# Fix for 'Error loading shared library libpcre.so.3: No such file or directory'
|
||||||
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'
|
||||||
|
ADD ./libnegentropy.so ./
|
||||||
|
|
||||||
# Copy to separate location to accomodate different MAKE_TARGET values
|
# Copy to separate location to accomodate different MAKE_TARGET values
|
||||||
ADD ./build/$MAKE_TARGET /usr/local/bin/
|
ADD ./build/$MAKE_TARGET /usr/local/bin/
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue