summaryrefslogtreecommitdiff
path: root/tests/docker/centos7-autotools/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'tests/docker/centos7-autotools/Dockerfile')
-rw-r--r--tests/docker/centos7-autotools/Dockerfile9
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/docker/centos7-autotools/Dockerfile b/tests/docker/centos7-autotools/Dockerfile
index a97db9d..e1c7888 100644
--- a/tests/docker/centos7-autotools/Dockerfile
+++ b/tests/docker/centos7-autotools/Dockerfile
@@ -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