mirror of
https://github.com/datahaven-xyz/datahaven
synced 2026-05-24 09:50:01 +00:00
fix: 🔧 Add missing libldap2-dev lib to DH operator Docker image (#252)
This commit is contained in:
parent
879be715b5
commit
d55310d1f4
1 changed files with 1 additions and 1 deletions
|
|
@ -15,7 +15,7 @@ WORKDIR /
|
||||||
|
|
||||||
RUN echo "*** Installing Basic dependencies ***"
|
RUN echo "*** Installing Basic dependencies ***"
|
||||||
RUN apt-get update && apt-get install -y ca-certificates && update-ca-certificates
|
RUN apt-get update && apt-get install -y ca-certificates && update-ca-certificates
|
||||||
RUN apt install --assume-yes git clang curl libpq-dev libssl-dev llvm libudev-dev make pkg-config unzip
|
RUN apt install --assume-yes git clang curl libldap2-dev libpq-dev libssl-dev llvm libudev-dev make pkg-config unzip
|
||||||
|
|
||||||
RUN echo "*** Installing protoc v${PROTOC_VER} ***"
|
RUN echo "*** Installing protoc v${PROTOC_VER} ***"
|
||||||
RUN curl -Lo /tmp/protoc.zip "https://github.com/protocolbuffers/protobuf/releases/download/v${PROTOC_VER}/protoc-${PROTOC_VER}-linux-x86_64.zip" \
|
RUN curl -Lo /tmp/protoc.zip "https://github.com/protocolbuffers/protobuf/releases/download/v${PROTOC_VER}/protoc-${PROTOC_VER}-linux-x86_64.zip" \
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue