-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
FROM ubuntu:24.04 | ||
|
||
|
||
# ----- install vital packages ----- | ||
ENV DEBIAN_FRONTEND teletype | ||
RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
apt-utils \ | ||
kmod \ | ||
systemd-sysv \ | ||
dbus \ | ||
openssh-client \ | ||
openssh-server \ | ||
isc-dhcp-client \ | ||
pciutils \ | ||
strace \ | ||
nfs-common \ | ||
ethtool\ | ||
linux-image-generic \ | ||
ifupdown \ | ||
ifmetric \ | ||
netbase && \ | ||
apt-get autoremove -y && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
|
||
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" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/sh | ||
set -x | ||
LANG=C | ||
LC_CTYPE=C | ||
export LANG LC_CTYPE | ||
apt-get clean |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/boot/ |