Dockerfile is not available on path --file docker/jetstream-controller/Dockerfile .
#216
Labels
defect
Suspected defect such as a bug or regression
What version were you using?
I am trying on main branch and 0.16.1 version of nack.
nats-server versio which is given in go.mod (github.com/nats-io/nats-server/v2 v2.10.18)
What environment was the server running in?
Linux/ppc64le
(I want to build the images for ppc64le arch. as there is no official support.)
Is this defect reproducible?
Yes.
#install deps.
yum install git make gcc -y
#install required go version
GO_VERSION=1.22.2
wget https://golang.org/dl/go$GO_VERSION.linux-ppc64le.tar.gz &&
tar -C /usr/local -xzf go$GO_VERSION.linux-ppc64le.tar.gz &&
rm -rf go$GO_VERSION.linux-ppc64le.tar.gz
export GOROOT=/usr/local/go &&
export GOPATH=$HOME &&
export PATH=$GOPATH/bin:$GOROOT/bin:$PATH
#clone the repo.
git clone https://github.com/nats-io/nack
cd nack
make jetstream-controller-docker ver=0.16.1
Given the capability you are leveraging, describe your expectation?
The image should gets build when we execute the given target in Makefile ( with
make jetstream-controller-docker
)The text was updated successfully, but these errors were encountered: