Hello i have compiled an application using cross compilation aarch64-linux-gnu.
The application runs well on the revolution pi
For delivery purpose, i would like to run this application on a docker container that will be running on the revolution pi.
Any suggest? i'm struggling since monday nothing works.
Kind regards,
Docker application running
Re: Docker application running
Hi cerberus78, have a look at these articles:
-
- Posts: 1
- Joined: 02 Oct 2024, 03:28
Re: Docker application running
Use an ARM64-compatible base image like `arm64v8/debian:bullseye` in your Dockerfile. Ensure your cross-compiled application and dependencies are compatible with ARM64. Build the Docker image with `--platform=linux/arm64`. Test with a simple ARM64 container (`docker run --rm arm64v8/alpine uname -m`) to ensure your Docker setup on the Revolution Pi is correct.