File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -24,6 +24,11 @@ RUN apt-get update -y \
2424 sudo \
2525 unzip \
2626 zip \
27+ wget \
28+ g++ \
29+ make \
30+ cmake libssl-dev libcurl4-openssl-dev liblog4cxx-dev \
31+ libprotobuf-dev protobuf-compiler libboost-all-dev google-mock libgtest-dev libjsoncpp-dev \
2732 && rm -rf /var/lib/apt/lists/*
2833
2934# Download latest git-lfs version
@@ -90,6 +95,10 @@ RUN export ARCH=$(echo ${TARGETPLATFORM} | cut -d / -f2) \
9095 && which docker-compose \
9196 && docker compose version
9297
98+ 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" \
99+ && 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" \
100+ && apt install ./apache-pulsar-client*.deb
101+
93102# We place the scripts in `/usr/bin` so that users who extend this image can
94103# override them with scripts of the same name placed in `/usr/local/bin`.
95104COPY entrypoint.sh startup.sh logger.sh graceful-stop.sh update-status /usr/bin/
You can’t perform that action at this time.
0 commit comments