-
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.
# Description Add Ubuntu 24.10 containers ## Issues Resolved List any existing issues this PR resolves, or any Discourse or StackOverflow discussions that are relevant ## Type of Change Our release process assumes you are using [Conventional Commit messages](https://www.conventionalcommits.org/en/v1.0.0/). The most important prefixes you should have in mind are: - `_fix_`: which represents bug fixes, and correlates to a SemVer patch. - `_feat_`: which represents a new feature, and correlates to a SemVer minor. - `_feat!_`:, or `fix!:`, `refactor!:`, etc., which represent a breaking change (indicated by the !) and will result in a major version change. If you have not included a conventional commit message this can be fixed on merge. ## Check List - [ ] New functionality includes tests - [ ] All tests pass - [ ] Commit message includes a [Conventional Commit Message](https://www.conventionalcommits.org/en/v1.0.0) Signed-off-by: Tim Smith <[email protected]>
- Loading branch information
Showing
9 changed files
with
75 additions
and
7 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 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
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
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,67 @@ | ||
FROM ubuntu:24.10 | ||
LABEL maintainer="[email protected]" | ||
ARG BUILD_DATE | ||
ARG VCS_REF | ||
|
||
LABEL org.opencontainers.image.created=$BUILD_DATE | ||
LABEL org.opencontainers.image.title="test-kitchen/dokken-images" | ||
LABEL org.opencontainers.image.description="A Docker container for testing Ubuntu 24.10" | ||
LABEL org.opencontainers.image.source="https://github.com/test-kitchen/dokken-images" | ||
LABEL org.opencontainers.image.revision=$VCS_REF | ||
LABEL org.opencontainers.image.vendor="test-kitchen" | ||
LABEL org.opencontainers.image.licenses="Apache-2.0" | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
# hadolint ignore=DL3008,DL3015 | ||
RUN apt-get update && \ | ||
apt-get -y install \ | ||
apt-transport-https \ | ||
apt-utils \ | ||
curl \ | ||
dbus \ | ||
cron \ | ||
dirmngr \ | ||
dmidecode \ | ||
gnupg \ | ||
iproute2 \ | ||
iptables \ | ||
iputils-ping \ | ||
kmod \ | ||
less \ | ||
linux-base \ | ||
locales \ | ||
lsb-release \ | ||
lsof \ | ||
net-tools \ | ||
nmap \ | ||
perl \ | ||
procps \ | ||
snapd \ | ||
strace \ | ||
sudo \ | ||
systemd \ | ||
tcpdump \ | ||
telnet \ | ||
tzdata \ | ||
udev \ | ||
vim-tiny \ | ||
wget && \ | ||
apt-get clean && \ | ||
apt-get -y autoremove && \ | ||
rm -rf /tmp/* /var/tmp/* && \ | ||
find /etc/systemd/system \ | ||
/lib/systemd/system \ | ||
-path '*.wants/*' \ | ||
\( -name '*getty*' \ | ||
-or -name '*apt-daily*' \ | ||
-or -name '*systemd-timesyncd*' \ | ||
-or -name '*systemd-logind*' \ | ||
-or -name '*systemd-vconsole-setup*' \ | ||
-or -name '*systemd-readahead*' \ | ||
-or -name '*udev*' \) \ | ||
-exec rm -v {} \; && \ | ||
systemctl set-default multi-user.target && \ | ||
systemctl mask dev-hugepages.mount sys-fs-fuse-connections.mount network.service | ||
|
||
CMD [ "/bin/systemd" ] |