tests: add Dockerfile for fedora 21

Signed-off-by: Loic Dachary <ldachary@redhat.com>
This commit is contained in:
Loic Dachary 2015-04-10 15:09:00 +02:00
parent d77de49eb1
commit 77788e36d1
4 changed files with 34 additions and 0 deletions

View File

@ -103,6 +103,9 @@ EXTRA_DIST += \
$(srcdir)/test/ubuntu-14.04/Dockerfile.in \
$(srcdir)/test/ubuntu-14.04/install-deps.sh \
$(srcdir)/test/ubuntu-14.04/debian \
$(srcdir)/test/fedora-21/Dockerfile.in \
$(srcdir)/test/fedora-21/install-deps.sh \
$(srcdir)/test/fedora-21/ceph.spec.in \
$(srcdir)/test/centos-6/Dockerfile.in \
$(srcdir)/test/centos-6/install-deps.sh \
$(srcdir)/test/centos-6/ceph.spec.in \

View File

@ -0,0 +1,29 @@
#
# Copyright (C) 2015 Red Hat <contact@redhat.com>
#
# Author: Loic Dachary <loic@dachary.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU Library Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Library Public License for more details.
#
# Environment variables are substituted via envsubst(1)
#
# user_id=$(id -u)
# os_version= the desired REPOSITORY TAG
#
FROM fedora:%%os_version%%
COPY install-deps.sh /root/
COPY ceph.spec.in /root/
# build dependencies
RUN yum install -y which ; cd /root ; ./install-deps.sh
# development tools
# nc is required to run make check on firefly only (giant+ do not use nc)
RUN yum install -y ccache valgrind gdb git python-virtualenv gdisk kpartx hdparm jq sudo xmlstarlet parted nc
RUN useradd -M --uid %%user_id%% %%USER%% && echo '%%USER%% ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers

View File

@ -0,0 +1 @@
../../../ceph.spec.in

View File

@ -0,0 +1 @@
../../../install-deps.sh