diff options
Diffstat (limited to 'build-containers/fedora44/Containerfile')
| -rw-r--r-- | build-containers/fedora44/Containerfile | 21 |
1 files changed, 6 insertions, 15 deletions
diff --git a/build-containers/fedora44/Containerfile b/build-containers/fedora44/Containerfile index fb54803..18ff672 100644 --- a/build-containers/fedora44/Containerfile +++ b/build-containers/fedora44/Containerfile @@ -1,24 +1,15 @@ FROM docker.io/library/fedora:44 RUN dnf install -y \ - make \ - clang \ - lld \ - curl \ - tar \ - gzip \ + meson \ + rpm-build \ + cargo \ + rust \ + desktop-file-utils \ + libappstream-glib \ 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 - |