Skip to content

Commit

Permalink
[Python Build] Add python-dev to pulsar standalone docker image (apac…
Browse files Browse the repository at this point in the history
…he#7871)

Motivation
Follow apache#7857 In the pulsar standalone Dockerfile, we also need to do the same operation

Modifications
Add python2.7-dev to pulsar standalone docker image
  • Loading branch information
wolfstudy authored Aug 21, 2020
1 parent f53c9d3 commit 54dd24c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/pulsar-standalone/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ FROM openjdk:8-jdk

# Note that the libpq-dev package is needed here in order to install
# the required python psycopg2 package (for postgresql) later
RUN apt-get update
RUN apt-get -y install python2.7 python-pip postgresql sudo nginx supervisor libpq-dev
RUN apt-get update \
&& apt-get -y install python2.7 python2.7-dev python-pip postgresql sudo nginx supervisor libpq-dev

# Postgres configuration
COPY --from=dashboard /etc/postgresql/11/main/postgresql.conf /etc/postgresql/11/main/postgresql.conf
Expand Down

0 comments on commit 54dd24c

Please sign in to comment.