Docker application running

Topics about the Software of Revolution Pi
Post Reply
cerberus78
Posts: 17
Joined: 06 May 2024, 20:24

Docker application running

Post by cerberus78 »

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,
User avatar
dirk
KUNBUS
Posts: 2132
Joined: 15 Dec 2016, 13:19

Re: Docker application running

Post by dirk »

quallyprevent
Posts: 1
Joined: 02 Oct 2024, 03:28

Re: Docker application running

Post by quallyprevent »

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.
Post Reply