A Dockerfile which creates an image with all requirements to build Amiberry for a Fedora x86_64
platform.
The image is based on Fedora:latest and includes all Amiberry dependencies (e.g. SDL2, SDL2-image, etc)
The full image is available on DockerHub: https://hub.docker.com/repository/docker/midwan/amiberry-fedora-x86_64
docker run --rm -it -v <dir-you-cloned-amiberry-into>:/build midwan/amiberry-fedora-x84_64:latest
Then you can proceed to compile Amiberry as usual, e.g.:
cmake -B build && cmake --build build
To build the image yourself:
docker build -t amiberry-fedora-x86_64:latest .
Images are automatically built and pushed to DockerHub via GitHub Actions on every push to main
and on a daily schedule.