I'm attempting to install the photon CLI only in an Alpine Linux Docker container to use in Concourse pipelines (ideal due to its tiny size).
Getting the binary from here wget https://github.com/vmware/photon-controller/releases/download/v1.0.0/photon-linux64 and running it produces bash: ./photon-linux64: No such file or directory, which is classic for a dynamically linked binary.
I've been unable to build from source on Alpine 3.4 so far, so I'd like to recommend to ship the binaries in the future statically linked, so any Linux distro can be used for this purpose.
I'm attempting to install the
photon
CLI only in an Alpine Linux Docker container to use in Concourse pipelines (ideal due to its tiny size).Getting the binary from here
wget https://github.com/vmware/photon-controller/releases/download/v1.0.0/photon-linux64
and running it producesbash: ./photon-linux64: No such file or directory
, which is classic for a dynamically linked binary.I've been unable to build from source on Alpine 3.4 so far, so I'd like to recommend to ship the binaries in the future statically linked, so any Linux distro can be used for this purpose.