-
Notifications
You must be signed in to change notification settings - Fork 10
/
Containerfile
55 lines (53 loc) · 1.16 KB
/
Containerfile
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
FROM docker.io/opensuse/leap:latest
RUN zypper update -y \
&& zypper install -yt pattern \
base \
&& zypper install -y \
bash \
coreutils \
cpio \
cronie \
e2fsprogs \
ethtool \
filesystem \
findutils \
gawk \
grep \
gzip \
ifplugd \
ipmitool \
iproute2 \
iputils \
kernel-default \
less \
net-tools \
nfs-client \
openssh-clients \
openssh-server \
pam \
pciutils \
psmisc \
rsync \
rsyslog \
sed \
strace \
sudo \
tar \
tcpdump \
timezone \
util-linux \
vim \
wget \
which \
wicked \
words \
zypper \
&& zypper clean \
&& systemctl enable sshd
COPY excludes /etc/warewulf/
COPY container_exit.sh /etc/warewulf/
CMD [ "/bin/echo", "-e", \
"This image is intended to be used with the Warewulf cluster management and", \
"\nprovisioning system.", \
"\n", \
"\nFor more information about Warewulf, visit https://warewulf.org" ]