-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace Fedora 36 (EOL) with Fedora 39 (#97)
New OS time Signed-off-by: Tim Smith <[email protected]>
- Loading branch information
Showing
5 changed files
with
71 additions
and
70 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
This file was deleted.
Oops, something went wrong.
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
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
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,68 @@ | ||
FROM fedora:39 | ||
LABEL maintainer="[email protected]" | ||
ARG BUILD_DATE | ||
ARG VCS_REF | ||
|
||
LABEL org.label-schema.schema-version="1.0" | ||
LABEL org.label-schema.build-date=$BUILD_DATE | ||
LABEL org.label-schema.name="test-kitchen/dokken-images" | ||
LABEL org.label-schema.description="A Docker container for testing Fedora 39" | ||
LABEL org.label-schema.vcs-url="https://github.com/test-kitchen/dokken-images" | ||
LABEL org.label-schema.vcs-ref=$VCS_REF | ||
LABEL org.label-schema.vendor="test-kitchen" | ||
|
||
# hadolint ignore=DL3041 | ||
RUN mkdir /var/cache/libdnf5 && \ | ||
dnf -y install \ | ||
binutils \ | ||
ca-certificates \ | ||
cronie \ | ||
curl \ | ||
dmidecode \ | ||
ethtool \ | ||
file \ | ||
fipscheck \ | ||
gnupg2 \ | ||
hostname \ | ||
initscripts \ | ||
iproute \ | ||
iptables \ | ||
iputils \ | ||
less \ | ||
lsof \ | ||
nc \ | ||
net-tools \ | ||
nmap \ | ||
openssl \ | ||
passwd \ | ||
procps \ | ||
strace \ | ||
sudo \ | ||
systemd-sysv \ | ||
systemd-udev \ | ||
tcpdump \ | ||
telnet \ | ||
util-linux \ | ||
vim-minimal \ | ||
wget \ | ||
libxcrypt-compat \ | ||
which && \ | ||
dnf upgrade -y && \ | ||
dnf clean all && \ | ||
rm -rf /var/log/* && \ | ||
# Don't start any optional services. | ||
find /etc/systemd/system \ | ||
/lib/systemd/system \ | ||
-path '*.wants/*' \ | ||
\( -name '*getty*' \ | ||
-or -name '*systemd-logind*' \ | ||
-or -name '*systemd-vconsole-setup*' \ | ||
-or -name '*systemd-readahead*' \ | ||
-or -name '*kdump*' \ | ||
-or -name '*dnf-makecache*' \ | ||
-or -name '*udev*' \) \ | ||
-exec rm -v {} \; && \ | ||
systemctl set-default multi-user.target && \ | ||
systemctl mask dev-hugepages.mount sys-fs-fuse-connections.mount network.service systemd-journal-flush.service | ||
|
||
CMD [ "/usr/lib/systemd/systemd" ] |