Skip to content

Commit

Permalink
Fix installing supervisor with pip
Browse files Browse the repository at this point in the history
  • Loading branch information
lhotari committed Sep 28, 2024
1 parent 45eb7df commit e535e16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/docker-images/java-test-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ USER root
COPY target/scripts /pulsar/bin
RUN chmod a+rx /pulsar/bin/*

RUN pip3 install supervisor
RUN pip3 install --break-system-packages supervisor

RUN mkdir -p /var/log/pulsar \
&& mkdir -p /var/run/supervisor/ \
Expand Down
2 changes: 1 addition & 1 deletion tests/docker-images/latest-version-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ FROM $PULSAR_IMAGE
# However, any processes exec'ing into the containers will run as root, by default.
USER root

RUN apk add --no-cache procps curl && pip3 install supervisor
RUN apk add --no-cache procps curl && pip3 install --break-system-packages supervisor

RUN mkdir -p /var/log/pulsar && mkdir -p /var/run/supervisor/

Expand Down

0 comments on commit e535e16

Please sign in to comment.