dockerfiles: Add valgrind to docker files
authorOlivier Crête <olivier.crete@collabora.com>
Wed, 31 Jul 2019 19:54:32 +0000 (15:54 -0400)
committerOlivier Crête <olivier.crete@collabora.com>
Wed, 31 Jul 2019 20:09:45 +0000 (16:09 -0400)
tests/docker/centos7-autotools/Dockerfile
tests/docker/centos7-meson/Dockerfile

index a97db9d..e1c7888 100644 (file)
@@ -4,10 +4,17 @@
 # docker push registry.freedesktop.org/libnice/libnice/centos7/autotools-build:$(date --rfc-3339=date)
 # docker push registry.freedesktop.org/libnice/libnice/centos7/autotools-build:latest
 
+# alternatively
+
+# buildah bud -t registry.freedesktop.org/libnice/libnice/centos7/autotools-build:$(date --rfc-3339=date) .
+# buildah tag registry.freedesktop.org/libnice/libnice/centos7/autotools-build:$(date --rfc-3339=date) registry.freedesktop.org/libnice/libnice/centos7/autotools-build:latest
+# buildah push registry.freedesktop.org/libnice/libnice/centos7/autotools-build:latest
+# buildah push registry.freedesktop.org/libnice/libnice/centos7/autotools-build:$(date --rfc-3339=date)
+
 FROM centos:centos7
 
 RUN yum -y update; yum clean all
-RUN yum -y install git gtk-doc gnutls-devel gupnp-igd-devel gstreamer1-devel gobject-introspection-devel; yum clean all
+RUN yum -y install git gtk-doc gnutls-devel gupnp-igd-devel gstreamer1-devel gobject-introspection-devel valgrind; yum clean all
 
 RUN yum -y install autoconf automake libtool; yum clean all
 RUN yum -y install net-tools; yum clean all
index f7fa1e1..f5635f6 100644 (file)
@@ -4,10 +4,17 @@
 # docker push registry.freedesktop.org/libnice/libnice/centos7/meson-build:latest
 # docker push registry.freedesktop.org/libnice/libnice/centos7/meson-build:$(date --rfc-3339=date)
 
+# alternatively
+
+# buildah bud -t registry.freedesktop.org/libnice/libnice/centos7/meson-build:$(date --rfc-3339=date) .
+# buildah tag registry.freedesktop.org/libnice/libnice/centos7/meson-build:$(date --rfc-3339=date) registry.freedesktop.org/libnice/libnice/centos7/meson-build:latest
+# buildah push registry.freedesktop.org/libnice/libnice/centos7/meson-build:latest
+# buildah push registry.freedesktop.org/libnice/libnice/centos7/meson-build:$(date --rfc-3339=date)
+
 FROM centos:centos7
 
 RUN yum -y update; yum clean all
-RUN yum -y install git gtk-doc gnutls-devel gupnp-igd-devel gstreamer1-devel gobject-introspection-devel; yum clean all
+RUN yum -y install git gtk-doc gnutls-devel gupnp-igd-devel gstreamer1-devel gobject-introspection-devel valgrind; yum clean all
 RUN yum -y install net-tools; yum clean all