File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,11 @@ RUN apt-get update -y \
25
25
sudo \
26
26
unzip \
27
27
zip \
28
+ wget \
29
+ g++ \
30
+ make \
31
+ cmake libssl-dev libcurl4-openssl-dev liblog4cxx-dev \
32
+ libprotobuf-dev protobuf-compiler libboost-all-dev google-mock libgtest-dev libjsoncpp-dev \
28
33
&& rm -rf /var/lib/apt/lists/*
29
34
30
35
RUN adduser --disabled-password --gecos "" --uid $RUNNER_USER_UID runner \
@@ -87,6 +92,10 @@ RUN export ARCH=$(echo ${TARGETPLATFORM} | cut -d / -f2) \
87
92
&& which docker-compose \
88
93
&& docker compose version
89
94
95
+ 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" \
96
+ && 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" \
97
+ && apt install ./apache-pulsar-client*.deb
98
+
90
99
# We place the scripts in `/usr/bin` so that users who extend this image can
91
100
# override them with scripts of the same name placed in `/usr/local/bin`.
92
101
COPY 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