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 @@ -25,6 +25,10 @@ RUN apt-get update -y \
2525 sudo \
2626 unzip \
2727 zip \
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 \
2832 && rm -rf /var/lib/apt/lists/*
2933
3034RUN adduser --disabled-password --gecos "" --uid $RUNNER_USER_UID runner \
@@ -87,6 +91,10 @@ RUN export ARCH=$(echo ${TARGETPLATFORM} | cut -d / -f2) \
8791 && which docker-compose \
8892 && docker compose version
8993
94+ 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" \
95+ && 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" \
96+ && apt install ./apache-pulsar-client*.deb
97+
9098# We place the scripts in `/usr/bin` so that users who extend this image can
9199# override them with scripts of the same name placed in `/usr/local/bin`.
92100COPY 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