https://github.com/blitterstudio/amiberry-docker-fedora-x86_64
Dockerfile for building Amiberry on Fedora x86_64
https://github.com/blitterstudio/amiberry-docker-fedora-x86_64
Last synced: 6 months ago
JSON representation
Dockerfile for building Amiberry on Fedora x86_64
- Host: GitHub
- URL: https://github.com/blitterstudio/amiberry-docker-fedora-x86_64
- Owner: BlitterStudio
- License: gpl-3.0
- Created: 2024-10-06T16:22:45.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-06-19T13:06:21.000Z (about 1 year ago)
- Last Synced: 2025-12-22T07:43:20.334Z (7 months ago)
- Language: Dockerfile
- Size: 27.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# amiberry-docker-fedora-x86_64
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:
## Usage
```bash
docker run --rm -it -v :/build midwan/amiberry-fedora-x84_64:latest
```
Then you can proceed to compile Amiberry as usual, e.g.:
```bash
cmake -B build && cmake --build build
```
## Building the image locally
To build the image yourself:
```bash
docker build -t amiberry-fedora-x86_64:latest .
```
## CI/CD
Images are automatically built and pushed to DockerHub via GitHub Actions on every push to `main` and on a daily schedule.