mirror of
https://github.com/ceph/ceph
synced 2025-01-20 01:51:34 +00:00
tests: add Dockerfile for fedora 21
Signed-off-by: Loic Dachary <ldachary@redhat.com>
This commit is contained in:
parent
d77de49eb1
commit
77788e36d1
@ -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 \
|
||||
|
29
src/test/fedora-21/Dockerfile.in
Normal file
29
src/test/fedora-21/Dockerfile.in
Normal 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
|
1
src/test/fedora-21/ceph.spec.in
Symbolic link
1
src/test/fedora-21/ceph.spec.in
Symbolic link
@ -0,0 +1 @@
|
||||
../../../ceph.spec.in
|
1
src/test/fedora-21/install-deps.sh
Symbolic link
1
src/test/fedora-21/install-deps.sh
Symbolic link
@ -0,0 +1 @@
|
||||
../../../install-deps.sh
|
Loading…
Reference in New Issue
Block a user