Skip to content

Commit d3b82fd

Browse files
committed
install pulsar
1 parent 1a8abb6 commit d3b82fd

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

runner/actions-runner.ubuntu-22.04.dockerfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff 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`.
95104
COPY entrypoint.sh startup.sh logger.sh graceful-stop.sh update-status /usr/bin/

0 commit comments

Comments
 (0)