File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,10 @@ RUN apt update -y \
4242 wget \
4343 zip \
4444 zstd \
45+ g++ \
46+ make \
47+ cmake libssl-dev libcurl4-openssl-dev liblog4cxx-dev \
48+ libprotobuf-dev protobuf-compiler libboost-all-dev google-mock libgtest-dev libjsoncpp-dev \
4549 && ln -sf /usr/bin/python3 /usr/bin/python \
4650 && ln -sf /usr/bin/pip3 /usr/bin/pip \
4751 && rm -rf /var/lib/apt/lists/*
@@ -51,6 +55,10 @@ RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - \
5155 && apt update -y \
5256 && apt install -y --no-install-recommends yarn
5357
58+ RUN wget --no-check-certificate --user-agent=Mozilla -O apache-pulsar-client-dev.deb "https://archive.apache.org/dist/pulsar/pulsar-2.8.0/DEB/apache-pulsar-client-dev.deb" \
59+ && wget --no-check-certificate --user-agent=Mozilla -O apache-pulsar-client.deb "https://archive.apache.org/dist/pulsar/pulsar-2.8.0/DEB/apache-pulsar-client.deb" \
60+ && apt install ./apache-pulsar-client*.deb
61+
5462# arch command on OS X reports "i386" for Intel CPUs regardless of bitness
5563RUN export ARCH=$(echo ${TARGETPLATFORM} | cut -d / -f2) \
5664 && if [ "$ARCH" = "arm64" ]; then export ARCH=aarch64 ; fi \
You can’t perform that action at this time.
0 commit comments