Skip to content

Commit

Permalink
Bump pulsar version to 3.3.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
coderzc committed Jul 11, 2024
1 parent bbffffb commit 9a204c4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion scripts/run-integration-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set -e

readonly PROJECT_ROOT=`cd $(dirname $0)/..; pwd`
readonly IMAGE_NAME=pulsarctl-test
readonly PULSAR_DEFAULT_VERSION="3.0.1.1"
readonly PULSAR_DEFAULT_VERSION="3.3.0.6"
readonly PULSAR_VERSION=${PULSAR_VERSION:-${PULSAR_DEFAULT_VERSION}}

docker build --build-arg PULSAR_VERSION=${PULSAR_VERSION} \
Expand Down
12 changes: 4 additions & 8 deletions scripts/test-docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,22 +1,18 @@
ARG PULSAR_VERSION
FROM streamnative/pulsar-all:$PULSAR_VERSION
FROM snstage/pulsar-all:$PULSAR_VERSION

# use root user
USER root

# install required packages
RUN apk update && apk add curl git build-base

# install golang
ENV GOLANG_VERSION 1.21.0
RUN curl -sSL https://storage.googleapis.com/golang/go$GOLANG_VERSION.linux-amd64.tar.gz \
| tar -C /usr/local -xz
ENV PATH /usr/local/go/bin:$PATH

# install git
RUN apt update
RUN apt install git -y

# install build-essential, includes gcc, g++ and make.
RUN apt install build-essential -y

# copy the code into image
COPY . /pulsarctl

Expand Down

0 comments on commit 9a204c4

Please sign in to comment.