Skip to content

Commit

Permalink
[fix][build] Fixed creation of packages-storage directory in docker…
Browse files Browse the repository at this point in the history
… image (apache#22730)
  • Loading branch information
merlimat authored May 17, 2024
1 parent edde408 commit 0c6f248
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/pulsar/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ COPY scripts/* /pulsar/bin/
# container when gid=0 is prohibited. In that case, the container must be run with uid 10000 with
# any group id != 0 (for example 10001).
# The file permissions are preserved when copying files from this builder image to the target image.
RUN for SUBDIRECTORY in conf data download logs instances/deps; do \
RUN for SUBDIRECTORY in conf data download logs instances/deps packages-storage; do \
mkdir -p /pulsar/$SUBDIRECTORY; \
chmod -R ug+rwx /pulsar/$SUBDIRECTORY; \
chown -R 10000:0 /pulsar/$SUBDIRECTORY; \
Expand Down

0 comments on commit 0c6f248

Please sign in to comment.