File tree Expand file tree Collapse file tree 1 file changed +21
-3
lines changed
Expand file tree Collapse file tree 1 file changed +21
-3
lines changed Original file line number Diff line number Diff line change 11# amiberry-docker-fedora-x86_64
22
3- A Dockerfile which creates an image, with the requirements to build Amiberry for a Fedora ` x86_64 ` platform.
3+ A Dockerfile which creates an image with all requirements to build Amiberry for a Fedora ` x86_64 ` platform.
44
55The image is based on Fedora: latest and includes all Amiberry dependencies (e.g. SDL2, SDL2-image, etc)
66
77The full image is available on DockerHub: < https://hub.docker.com/repository/docker/midwan/amiberry-fedora-x86_64 >
88
99## Usage
1010
11- ` docker run --rm -it -v <dir-you-cloned-amiberry-into>:/build midwan/amiberry-fedora-x84_64:latest `
11+ ``` bash
12+ docker run --rm -it -v < dir-you-cloned-amiberry-into> :/build midwan/amiberry-fedora-x84_64:latest
13+ ```
1214
13- Then you can proceed to compile Amiberry as usual, e.g. ` cmake -B build && cmake --build build `
15+ Then you can proceed to compile Amiberry as usual, e.g.:
16+
17+ ``` bash
18+ cmake -B build && cmake --build build
19+ ```
20+
21+ ## Building the image locally
22+
23+ To build the image yourself:
24+
25+ ``` bash
26+ docker build -t amiberry-fedora-x86_64:latest .
27+ ```
28+
29+ ## CI/CD
30+
31+ Images are automatically built and pushed to DockerHub via GitHub Actions on every push to ` main ` and on a daily schedule.
You can’t perform that action at this time.
0 commit comments