File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
pulsar-functions-base-runner
pulsar-functions-python-runner Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11ARG PULSAR_IMAGE
22ARG PULSAR_IMAGE_TAG
33FROM ${PULSAR_IMAGE}:${PULSAR_IMAGE_TAG} as pulsar
4- FROM alpine:3.19 as functions-runner
4+ FROM alpine:3.20 as functions-runner
55
66ENV GID=10001
77ENV UID=10000
Original file line number Diff line number Diff line change 11ARG PULSAR_IMAGE
22ARG PULSAR_IMAGE_TAG
33FROM ${PULSAR_IMAGE}:${PULSAR_IMAGE_TAG} as pulsar
4- FROM alpine:3.19 as functions-runner
4+ FROM alpine:3.20 as functions-runner
55
66ENV GID=10001
77ENV UID=10000
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ RUN if [ -d "/tmp/pulsar/cpp-client" ]; then mv /tmp/pulsar/cpp-client /pulsar/c
2323# Install some utilities
2424RUN apk update \
2525 && apk add --no-cache python3 python3-dev tk-dev curl ca-certificates\
26- && mv /usr/lib/python3.11 /EXTERNALLY-MANAGED /usr/lib/python3.11 /EXTERNALLY-MANAGED.old
26+ && mv /usr/lib/python3.* /EXTERNALLY-MANAGED /tmp /EXTERNALLY-MANAGED.old
2727
2828RUN mkdir -p /etc/pki/tls/certs && cp /etc/ssl/certs/ca-certificates.crt /etc/pki/tls/certs/ca-bundle.crt
2929
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ RUN apk update \
2323 && apk add --no-cache python3 python3-dev tk-dev curl ca-certificates\
2424 && mkdir -p /etc/pki/tls/certs && cp /etc/ssl/certs/ca-certificates.crt /etc/pki/tls/certs/ca-bundle.crt \
2525 && curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py \
26- && mv /usr/lib/python3.11 /EXTERNALLY-MANAGED /usr/lib/python3.11 /EXTERNALLY-MANAGED.old \
26+ && mv /usr/lib/python3.* /EXTERNALLY-MANAGED /tmp /EXTERNALLY-MANAGED.old \
2727 && python3 get-pip.py && pip3 install --upgrade pip
2828
2929RUN if [ -f "/pulsar/bin/install-pulsar-client-37.sh" ]; then /pulsar/bin/install-pulsar-client-37.sh || pip3 install 'pulsar-client[all]==3.5.0' ; else pip3 install 'pulsar-client[all]==3.5.0' ; fi
Original file line number Diff line number Diff line change 1- FROM alpine:3.19
1+ FROM alpine:3.20
22
33RUN apk add tzdata --no-cache
44RUN apk upgrade --no-cache
You can’t perform that action at this time.
0 commit comments