Search found 1 match

by quallyprevent
02 Oct 2024, 03:31
Forum: Software
Topic: Docker application running
Replies: 2
Views: 3410

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`...