You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by rg...@apache.org on 2021/09/07 09:03:49 UTC

[pulsar] branch branch-2.7 updated (3876c56 -> bb96d8a)

This is an automated email from the ASF dual-hosted git repository.

rgao pushed a change to branch branch-2.7
in repository https://gitbox.apache.org/repos/asf/pulsar.git.


    from 3876c56  [Branch-2.7][Broker] Fix using partitioned topic name to get topic policies (#11897)
     add b0e3853  fix docker file to install `python3.7-dev`
     new bb96d8a  fix

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 docker/pulsar/Dockerfile | 5 +++++
 1 file changed, 5 insertions(+)

[pulsar] 01/01: fix

Posted by rg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rgao pushed a commit to branch branch-2.7
in repository https://gitbox.apache.org/repos/asf/pulsar.git

commit bb96d8aa97c600174f9115a2e3b3b83de828c406
Author: gaoran10 <ga...@126.com>
AuthorDate: Tue Sep 7 17:02:52 2021 +0800

    fix
---
 docker/pulsar/Dockerfile | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/docker/pulsar/Dockerfile b/docker/pulsar/Dockerfile
index f95e119..edcbd8a 100644
--- a/docker/pulsar/Dockerfile
+++ b/docker/pulsar/Dockerfile
@@ -40,9 +40,13 @@ COPY scripts/install-pulsar-client-37.sh /pulsar/bin
 
 FROM openjdk:8-jdk-slim
 
+# Install software-properties-common
+RUN apt update \
+    && apt install software-properties-common \
+    && add-apt-repository ppa:deadsnakes/ppa
+
 # Install some utilities
-RUN add-apt-repository ppa:deadsnakes/ppa \
-     && apt-get update \
+RUN apt-get update \
      && apt-get install -y netcat dnsutils less procps iputils-ping \
                  python3.7 python3.7-dev python3-setuptools python3-yaml python3-kazoo \
                  libreadline-gplv2-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev \