The following sequence ends with "scp not found"
the problem is that the "apt-get update; apt-get install" do not get executed (in the docker container or at all...)
Moving the apt-get statements to "Clone into KIPR's Create..." resolves the issue.
Clone into arm64 Docker repository
git clone https://github.com/kipr/arm64_docker
cd arm64_docker
sudo docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
sudo python3 build.py --dockerfile Dockerfile.aarch64 --tag local/arm64
sudo docker run -it --rm local/arm64
apt-get update
apt-get install build-essential openssh-client libzbar-dev libssl-dev
Clone into KIPR's Create 3 repository inside arm64_docker container
git clone -c http.sslVerify=false https://github.com/kipr/create3.git
cd create3
cmake -Bbuild -Dserver=OFF
cd build
make -j16
cmake --install . --prefix prefix
cpack
scp create3-0.1.0-Linux.deb kipr@$WOMBAT_IP:~/create3-0.1.0-Linux.deb
The following sequence ends with "scp not found"
the problem is that the "apt-get update; apt-get install" do not get executed (in the docker container or at all...)
Moving the apt-get statements to "Clone into KIPR's Create..." resolves the issue.
Clone into arm64 Docker repository
git clone https://github.com/kipr/arm64_docker
cd arm64_docker
sudo docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
sudo python3 build.py --dockerfile Dockerfile.aarch64 --tag local/arm64
sudo docker run -it --rm local/arm64
apt-get update
apt-get install build-essential openssh-client libzbar-dev libssl-dev
Clone into KIPR's Create 3 repository inside arm64_docker container
git clone -c http.sslVerify=false https://github.com/kipr/create3.git
cd create3
cmake -Bbuild -Dserver=OFF
cd build
make -j16
cmake --install . --prefix prefix
cpack
scp create3-0.1.0-Linux.deb kipr@$WOMBAT_IP:~/create3-0.1.0-Linux.deb