https://github.com/blitterstudio/amiberry-docker-aarch64
Dockerfile for building Amiberry on Aarch64
https://github.com/blitterstudio/amiberry-docker-aarch64
Last synced: 6 months ago
JSON representation
Dockerfile for building Amiberry on Aarch64
- Host: GitHub
- URL: https://github.com/blitterstudio/amiberry-docker-aarch64
- Owner: BlitterStudio
- License: gpl-3.0
- Created: 2022-06-07T08:06:00.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-08-20T19:40:23.000Z (11 months ago)
- Last Synced: 2025-08-20T21:35:20.463Z (11 months ago)
- Language: Dockerfile
- Size: 41 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# amiberry-docker-aarch64
A Dockerfile which creates an image with all requirements to cross-compile Amiberry for the `aarch64` platform (e.g. Raspberry Pi 64-bit) on an x86_64 host.
The image is based on Debian and includes all Amiberry dependencies (e.g. SDL2, SDL2-image, etc). Supported Debian versions: `bullseye`, `bookworm` (see tags below).
The full image is available on DockerHub:
## Usage
To use the latest Bookworm-based image:
```bash
docker run --rm -it -v :/build midwan/amiberry-debian-aarch64:latest
```
To use a specific Debian version:
```bash
docker run --rm -it -v :/build midwan/amiberry-debian-aarch64:bookworm
docker run --rm -it -v :/build midwan/amiberry-debian-aarch64:bullseye
```
Then you can proceed to compile Amiberry with the relevant toolchain file, e.g.:
```bash
cmake -DCMAKE_TOOLCHAIN_FILE=cmake/Toolchain-aarch64-linux-gnu.cmake -B build && cmake --build build
```
## Building the image locally
To build the image yourself for a specific Debian release:
```bash
docker build --build-arg debian_release=bookworm -t amiberry-debian-aarch64:bookworm .
```
## CI/CD
Images are automatically built and pushed to DockerHub via GitHub Actions on every push to `main` and on a daily schedule.