Skip to content

Commit 85f6787

Browse files
committed
install pulsar
1 parent 514b7da commit 85f6787

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

runner/actions-runner.ubuntu-22.04.dockerfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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

3034
RUN 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`.
92100
COPY entrypoint.sh startup.sh logger.sh graceful-stop.sh update-status /usr/bin/

0 commit comments

Comments
 (0)