docker/fedora: use git-core instead of git
authorJordan Petridis <jordan@centricular.com>
Thu, 14 Mar 2019 14:51:14 +0000 (16:51 +0200)
committerJordan Petridis <jpetridis@gnome.org>
Thu, 14 Mar 2019 15:33:05 +0000 (15:33 +0000)
We don't need the full blown git pakcage and we can avoid
a couple of perl deps that way

docker/fedora/prepare.sh
docker/test_manifest/Dockerfile

index 4f31888..491ddc2 100644 (file)
@@ -1,6 +1,6 @@
 set -eu
 
-dnf install -y git meson ninja-build dnf-plugins-core
+dnf install -y git-core meson ninja-build dnf-plugins-core
 
 # Configure git for various usage
 git config --global user.email "gst-build@gstreamer.net"
index 15ffbda..2a43a39 100644 (file)
@@ -4,5 +4,5 @@ RUN dnf install -y \
     python3-pytest \
     python3-requests \
     python3-pytest-cov \
-    git \
+    git-core \
     && rm -rf /var/cache/dnf /var/log/dnf*
\ No newline at end of file