1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

redis: use self-built hiredis on Debian Docker images

This commit is contained in:
Steffen Vogel 2021-07-20 17:43:19 +02:00
parent d72a133263
commit 64824e198a
2 changed files with 8 additions and 4 deletions

View file

@ -63,8 +63,10 @@ RUN apt-get update && \
libusb-1.0-0-dev \
libfmt-dev \
libspdlog-dev \
liblua5.3-dev \
libhiredis-dev
liblua5.3-dev
# hiredis on Debian comes without SSL support. We built it ourself
# libhiredis-dev:${ARCH}
# Add local and 64-bit locations to linker paths
ENV echo /usr/local/lib >> /etc/ld.so.conf && \

View file

@ -67,8 +67,10 @@ RUN apt-get update && \
libibverbs-dev:${ARCH} \
librdmacm-dev:${ARCH} \
libre-dev:${ARCH} \
liblua5.3-dev:${ARCH} \
libhiredis-dev:${ARCH}
liblua5.3-dev:${ARCH}
# hiredis on Debian comes without SSL support. We built it ourself
# libhiredis-dev:${ARCH}
# Add local and 64-bit locations to linker paths
ENV echo /usr/local/lib >> /etc/ld.so.conf && \