diff options
| author | Rubén Beltrán del Río <jj@r.bdr.sh> | 2026-01-18 15:20:57 +0100 |
|---|---|---|
| committer | Rubén Beltrán del Río <jj@r.bdr.sh> | 2026-01-18 16:17:33 +0100 |
| commit | 238fd3b539679a9f53f0b9523f8e4b8d749697d2 (patch) | |
| tree | 02f82ba2df60f29fff8202ac1fc0182e807f8575 /build-containers/fedora43 | |
| parent | a7926bd5e9fddd40d1be0c8189022de824a9f330 (diff) | |
Use Containerfiles for builds
Diffstat (limited to 'build-containers/fedora43')
| -rw-r--r-- | build-containers/fedora43/Containerfile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/build-containers/fedora43/Containerfile b/build-containers/fedora43/Containerfile new file mode 100644 index 0000000..55f8329 --- /dev/null +++ b/build-containers/fedora43/Containerfile @@ -0,0 +1,23 @@ +FROM fedora:43 + +RUN dnf install -y \ + make \ + clang \ + lld \ + curl \ + tar \ + gzip \ + gettext \ + gtk4-devel \ + libadwaita-devel \ + gtksourceview5-devel \ + pkg-config \ + && dnf clean all + +# Install rust toolchain +RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y +ENV PATH="/root/.cargo/bin:${PATH}" + +# Install cargo-generate-rpm +RUN curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash \ + && cargo binstall cargo-generate-rpm --no-confirm |