An open API service indexing awesome lists of open source software.

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

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.