Skip to content

Commit

Permalink
Add Ubuntu 22.04 and 24.04 to the packaging custom containers
Browse files Browse the repository at this point in the history
  • Loading branch information
s0undt3ch committed Apr 28, 2024
1 parent ce55c3d commit c2b62d7
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@ will be commited.
- packaging:centosstream-9 - `ghcr.io/saltstack/salt-ci-containers/packaging:centosstream-9`
- packaging:debian-12 - `ghcr.io/saltstack/salt-ci-containers/packaging:debian-12`
- packaging:debian-13 - `ghcr.io/saltstack/salt-ci-containers/packaging:debian-13`
- packaging:ubuntu-22.04 - `ghcr.io/saltstack/salt-ci-containers/packaging:ubuntu-22.04`
- packaging:ubuntu-24.04 - `ghcr.io/saltstack/salt-ci-containers/packaging:ubuntu-24.04`


### [![Virt Minion](https://github.com/saltstack/salt-ci-containers/actions/workflows/virt-minion-containers.yml/badge.svg)](https://github.com/saltstack/salt-ci-containers/actions/workflows/virt-minion-containers.yml)
Expand Down
2 changes: 2 additions & 0 deletions containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ custom:
- debian-12
- debian-13
- centosstream-9
- ubuntu-22.04
- ubuntu-24.04
# <---- Custom Containers ---------------------------------------------------------------------------------

# ----- Mirrored Containers ------------------------------------------------------------------------------>
Expand Down
2 changes: 2 additions & 0 deletions custom/packaging/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@
- packaging:centosstream-9 - `ghcr.io/saltstack/salt-ci-containers/packaging:centosstream-9`
- packaging:debian-12 - `ghcr.io/saltstack/salt-ci-containers/packaging:debian-12`
- packaging:debian-13 - `ghcr.io/saltstack/salt-ci-containers/packaging:debian-13`
- packaging:ubuntu-22.04 - `ghcr.io/saltstack/salt-ci-containers/packaging:ubuntu-22.04`
- packaging:ubuntu-24.04 - `ghcr.io/saltstack/salt-ci-containers/packaging:ubuntu-24.04`
10 changes: 10 additions & 0 deletions custom/packaging/ubuntu-22.04.Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM ubuntu:22.04

COPY 01_nodoc /etc/dpkg/dpkg.cfg.d/01_nodoc

RUN apt update -y \
&& echo 'tzdata tzdata/Areas select Europe' | debconf-set-selections \
&& echo 'tzdata tzdata/Zones/Europe select Lisbon' | debconf-set-selections \
&& DEBIAN_FRONTEND="noninteractive" apt install -y \
apt-utils gnupg jq awscli python3 python3-venv python3-pip \
build-essential devscripts debhelper bash-completion git patchelf curl rustc
10 changes: 10 additions & 0 deletions custom/packaging/ubuntu-24.04.Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM ubuntu:22.04

COPY 01_nodoc /etc/dpkg/dpkg.cfg.d/01_nodoc

RUN apt update -y \
&& echo 'tzdata tzdata/Areas select Europe' | debconf-set-selections \
&& echo 'tzdata tzdata/Zones/Europe select Lisbon' | debconf-set-selections \
&& DEBIAN_FRONTEND="noninteractive" apt install -y \
apt-utils gnupg jq awscli python3 python3-venv python3-pip \
build-essential devscripts debhelper bash-completion git patchelf curl rustc

0 comments on commit c2b62d7

Please sign in to comment.