https://bugzilla.redhat.com/show_bug.cgi?id=1098120
--- Comment #16 from Paolo Antinori pantinor@redhat.com --- Thanks to Daniel half of my problem is solved.
I am now able to build successfully with Centos base image, adding his packages as the very first step:
FROM centos:latest
# keep this until these packages get into the official image with Cenots 6.6 # see http://bugs.centos.org/view.php?id=7126 RUN yum install -y http://mirror.centos.org/centos/6.5/centosplus/x86_64/Packages/libselinux-2.... http://mirror.centos.org/centos/6.5/centosplus/x86_64/Packages/libselinux-ut...
RUN yum install -y httpd ; yum -y clean all
CMD service httpd start ; bash
EXPOSE 80