Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[fix][alpine] thread stack size #23361

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docker/pulsar-all/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

ARG PULSAR_IMAGE
FROM busybox as pulsar-all
ENV PTHREAD_STACK_MIN 2097152
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a multi-stage image. The ENV is only effective in the final image if it's defined in the last stage.


ARG PULSAR_IO_DIR
ARG PULSAR_OFFLOADER_TARBALL
Expand Down
1 change: 1 addition & 0 deletions docker/pulsar/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ FROM apachepulsar/glibc-base:2.38 as glibc
## and add OpenJDK and Python dependencies (for Pulsar functions)
FROM alpine:$ALPINE_VERSION
ENV LANG C.UTF-8
ENV PTHREAD_STACK_MIN 2097152

# Install some utilities, some are required by Pulsar scripts
RUN apk add --no-cache \
Expand Down
Loading