-
Notifications
You must be signed in to change notification settings - Fork 9
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
15 changed files
with
104 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
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,9 @@ | ||
path-exclude /usr/share/doc/* | ||
# we need to keep copyright files for legal reasons | ||
path-include /usr/share/doc/*/copyright | ||
path-exclude /usr/share/man/* | ||
path-exclude /usr/share/groff/* | ||
path-exclude /usr/share/info/* | ||
# lintian stuff is small, but really unnecessary | ||
path-exclude /usr/share/lintian/* | ||
path-exclude /usr/share/linda/* |
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 |
---|---|---|
@@ -1,6 +1,15 @@ | ||
# [![Salt Testing](https://github.com/saltstack/salt-ci-containers/actions/workflows/testing-containers.yml/badge.svg)](https://github.com/saltstack/salt-ci-containers/actions/workflows/testing-containers.yml) | ||
|
||
- testing:amazonlinux-2 - `ghcr.io/saltstack/salt-ci-containers/testing:amazonlinux-2` | ||
- testing:amazonlinux-2023 - `ghcr.io/saltstack/salt-ci-containers/testing:amazonlinux-2023` | ||
- testing:debian-11 - `ghcr.io/saltstack/salt-ci-containers/testing:debian-11` | ||
- testing:debian-12 - `ghcr.io/saltstack/salt-ci-containers/testing:debian-12` | ||
- testing:debian-13 - `ghcr.io/saltstack/salt-ci-containers/testing:debian-13` | ||
- testing:fedora-40 - `ghcr.io/saltstack/salt-ci-containers/testing:fedora-40` | ||
- testing:photon-4 - `ghcr.io/saltstack/salt-ci-containers/testing:photon-4` | ||
- testing:photon-5 - `ghcr.io/saltstack/salt-ci-containers/testing:photon-5` | ||
- testing:rockylinux-8 - `ghcr.io/saltstack/salt-ci-containers/testing:rockylinux-8` | ||
- testing:rockylinux-9 - `ghcr.io/saltstack/salt-ci-containers/testing:rockylinux-9` | ||
- testing:ubuntu-20.04 - `ghcr.io/saltstack/salt-ci-containers/testing:ubuntu-20.04` | ||
- testing:ubuntu-22.04 - `ghcr.io/saltstack/salt-ci-containers/testing:ubuntu-22.04` | ||
- testing:ubuntu-24.04 - `ghcr.io/saltstack/salt-ci-containers/testing:ubuntu-24.04` |
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,7 @@ | ||
FROM amazonlinux:2 | ||
|
||
RUN yum update -y \ | ||
&& yum install -y --allowerasing python3 python3-devel python3-pip openssl git rpmdevtools rpmlint \ | ||
systemd-units git gnupg2 jq createrepo rpm-sign epel-release rustc cargo \ | ||
curl wget \ | ||
&& yum install -y patchelf |
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,7 @@ | ||
FROM amazonlinux:2023 | ||
|
||
RUN yum update -y \ | ||
&& yum install -y --allowerasing python3 python3-devel python3-pip openssl git rpmdevtools rpmlint \ | ||
systemd-units git gnupg2 jq createrepo rpm-sign epel-release rustc cargo \ | ||
curl wget \ | ||
&& yum install -y patchelf |
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,8 @@ | ||
FROM debian:12 | ||
|
||
COPY 01_nodoc /etc/dpkg/dpkg.cfg.d/01_nodoc | ||
|
||
RUN apt update -y \ | ||
&& apt install -y apt-utils gnupg jq awscli python3 python3-venv python3-pip \ | ||
build-essential devscripts debhelper bash-completion git patchelf curl rustc \ | ||
wget |
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,8 @@ | ||
FROM debian:12 | ||
|
||
COPY 01_nodoc /etc/dpkg/dpkg.cfg.d/01_nodoc | ||
|
||
RUN apt update -y \ | ||
&& apt install -y apt-utils gnupg jq awscli python3 python3-venv python3-pip \ | ||
build-essential devscripts debhelper bash-completion git patchelf curl rustc \ | ||
wget |
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,8 @@ | ||
FROM debian:trixie | ||
|
||
COPY 01_nodoc /etc/dpkg/dpkg.cfg.d/01_nodoc | ||
|
||
RUN apt update -y \ | ||
&& apt install -y apt-utils gnupg jq awscli python3 python3-venv python3-pip \ | ||
build-essential devscripts debhelper bash-completion git patchelf curl rustc \ | ||
wget |
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 @@ | ||
FROM fedora:40 | ||
|
||
RUN yum update -y \ | ||
&& yum install -y --allowerasing python3 python3-devel python3-pip openssl git rpmdevtools rpmlint \ | ||
systemd-units libxcrypt-compat git gnupg2 jq createrepo rpm-sign rustc cargo \ | ||
curl wget patchelf |
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,5 @@ | ||
FROM photon:4.0 | ||
|
||
RUN yum update -y \ | ||
&& yum install -y --allowerasing python3 python3-devel python3-pip openssl git \ | ||
git jq createrepo curl wget |
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,5 @@ | ||
FROM photon:5.0 | ||
|
||
RUN yum update -y \ | ||
&& yum install -y --allowerasing python3 python3-devel python3-pip openssl git \ | ||
git jq createrepo curl wget |
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,10 @@ | ||
FROM ubuntu:24.04 | ||
|
||
COPY 01_nodoc /etc/dpkg/dpkg.cfg.d/01_nodoc | ||
|
||
RUN apt update -y \ | ||
&& echo 'tzdata tzdata/Areas select America' | debconf-set-selections \ | ||
&& echo 'tzdata tzdata/Zones/America select Phoenix' | debconf-set-selections \ | ||
&& DEBIAN_FRONTEND="noninteractive" apt install -y \ | ||
python3 python3-venv python3-pip unzip sudo tree \ | ||
wget |