forked from tytso/xfstests-bld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
72 lines (67 loc) · 1.74 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# This Dockerfile creates an debian image with xfstests-bld build environment
#
# This Dockerfile file is useful for building the xfstests.tar.gz file
# in a Docker environment, for continuous build testing. It can also
# be useful for testing whatever the file system environemnt is
# provided in the Docker environment, without requiring any special
# privileges.
#
# VERSION 0.1
FROM debian:stretch
# Install dependencies
RUN apt-get update && \
apt-get install -y \
autoconf \
automake \
bc \
build-essential \
curl \
gettext \
git \
libkeyutils-dev \
libtool \
libtool-bin \
pkg-config \
pigz \
uuid-dev \
libssl-dev \
autopoint \
procps \
python \
python-future && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* \
/usr/share/doc /usr/share/doc-base \
/usr/share/man /usr/share/locale /usr/share/zoneinfo
MAINTAINER Theodore Y. Ts'o [email protected]
COPY . /devel/xfstests-bld
RUN cd /devel/xfstests-bld && \
cp config.docker config.custom && \
make && \
make tarball && \
tar -C /root -xf xfstests.tar.gz && \
cd kvm-xfstests/test-appliance && \
cp docker-entrypoint /entrypoint && \
rsync --exclude-from docker-exclude-files -avH files/* / && \
chown -R root:root /root && \
useradd -u 31415 -s /bin/bash -m fsgqa && \
cd /devel && \
rm -rf /devel/xfstests-bld && \
mkdir -p /results && \
apt-get purge -y \
autoconf \
automake \
autopoint \
build-essential \
gettext \
git \
libkeyutils-dev \
libssl-dev \
libtool \
libtool-bin \
pkg-config \
pigz \
uuid-dev && \
apt-get autoremove -y
ENTRYPOINT ["/entrypoint"]
CMD ["-g","quick"]