10fbf5eec6827366fa3bfe64a6fdd523ce437b8b
[platform/upstream/libnice.git] / tests / docker / centos7-autotools / Dockerfile
1 # build with
2 # docker build -t registry.freedesktop.org/libnice/libnice/centos7/autotools-build:$(date --rfc-3339=date) .
3 # docker tag  registry.freedesktop.org/libnice/libnice/centos7/autotools-build:$(date --rfc-3339=date)  registry.freedesktop.org/libnice/libnice/centos7/autotools-build:latest
4 # docker push registry.freedesktop.org/libnice/libnice/centos7/autotools-build:$(date --rfc-3339=date)
5 # docker push registry.freedesktop.org/libnice/libnice/centos7/autotools-build:latest
6
7 # alternatively
8
9 # export BUILDAH_FORMAT=docker
10 # buildah bud -t registry.freedesktop.org/libnice/libnice/centos7/autotools-build:$(date --rfc-3339=date) .
11 # buildah tag registry.freedesktop.org/libnice/libnice/centos7/autotools-build:$(date --rfc-3339=date) registry.freedesktop.org/libnice/libnice/centos7/autotools-build:latest
12 # buildah push registry.freedesktop.org/libnice/libnice/centos7/autotools-build:latest
13 # buildah push registry.freedesktop.org/libnice/libnice/centos7/autotools-build:$(date --rfc-3339=date)
14
15 FROM centos:centos7
16
17 RUN yum -y update; yum clean all
18 RUN yum -y install git gtk-doc gnutls-devel gupnp-igd-devel gstreamer1-devel gobject-introspection-devel valgrind; yum clean all
19
20 RUN yum -y install autoconf automake libtool; yum clean all
21 RUN yum -y install net-tools; yum clean all