Skip to content

Commit

Permalink
Add Ubuntu 24.10 (#127)
Browse files Browse the repository at this point in the history
# 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
tas50 authored Aug 1, 2024
1 parent 8b23c02 commit 3ebb029
Show file tree
Hide file tree
Showing 9 changed files with 75 additions and 7 deletions.
1 change: 1 addition & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ jobs:
- "ubuntu-20.04"
- "ubuntu-22.04"
- "ubuntu-24.04"
- "ubuntu-24.10"
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion rockylinux-8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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 rockylinux-8"
LABEL org.opencontainers.image.description="A Docker container for testing Rocky Linux 8"
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"
Expand Down
2 changes: 1 addition & 1 deletion rockylinux-9/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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 rockylinux-9"
LABEL org.opencontainers.image.description="A Docker container for testing Rocky Linux 9"
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"
Expand Down
2 changes: 1 addition & 1 deletion ubuntu-16.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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-16.04"
LABEL org.opencontainers.image.description="A Docker container for testing Ubuntu 16.04"
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"
Expand Down
2 changes: 1 addition & 1 deletion ubuntu-18.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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-18.04"
LABEL org.opencontainers.image.description="A Docker container for testing Ubuntu 18.04"
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"
Expand Down
2 changes: 1 addition & 1 deletion ubuntu-20.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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-20.04"
LABEL org.opencontainers.image.description="A Docker container for testing Ubuntu 20.04"
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"
Expand Down
2 changes: 1 addition & 1 deletion ubuntu-22.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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-22.04"
LABEL org.opencontainers.image.description="A Docker container for testing Ubuntu 22.04"
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"
Expand Down
2 changes: 1 addition & 1 deletion ubuntu-24.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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.04"
LABEL org.opencontainers.image.description="A Docker container for testing Ubuntu 24.04"
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"
Expand Down
67 changes: 67 additions & 0 deletions ubuntu-24.10/Dockerfile
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" ]

0 comments on commit 3ebb029

Please sign in to comment.