-
Notifications
You must be signed in to change notification settings - Fork 46
/
Dockerfile
81 lines (76 loc) · 1.9 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
73
74
75
76
77
78
79
80
81
# 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:bullseye
# Install dependencies
RUN apt-get update && \
apt-get install -y \
autoconf \
automake \
autopoint \
bc \
bison \
build-essential \
curl \
gettext \
git \
libblkid-dev \
libdbus-1-3 \
libkeyutils-dev \
libtool \
libgdbm-dev \
libkeyutils-dev \
libssl-dev \
libtool-bin \
liburcu-dev \
pkg-config \
pigz \
uuid-dev \
zlib1g-dev \
procps \
python3 \
python3-future \
rsync \
symlinks && \
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/fstests-bld && \
cp config.docker config.custom && \
make && \
make tarball && \
tar -C /root -xf xfstests.tar.gz && \
cd ../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"]