-
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
10 changed files
with
185 additions
and
41 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,27 @@ | ||
FROM debian:12 | ||
FROM debian:11 | ||
|
||
COPY 01_nodoc /etc/dpkg/dpkg.cfg.d/01_nodoc | ||
COPY golden-pillar-tree golden-pillar-tree | ||
COPY golden-state-tree golden-state-tree | ||
|
||
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 | ||
RUN <<EOF | ||
echo 'tzdata tzdata/Areas select America' | debconf-set-selections | ||
echo 'tzdata tzdata/Zones/America select Phoenix' | debconf-set-selections | ||
export DEBIAN_FRONTEND="noninteractive" | ||
if [ $(uname -m) = "x86_64" ]; then | ||
export ARCH=x86_64 | ||
else | ||
export ARCH=arm64 | ||
fi | ||
apt update -y | ||
apt install -y tar wget xz-utils vim-nox apt-utils | ||
wget https://packages.broadcom.com/artifactory/saltproject-generic/onedir/3007.1/salt-3007.1-onedir-linux-$ARCH.tar.xz | ||
tar xf salt-3007.1-onedir-linux-$ARCH.tar.xz | ||
./salt/salt-call --local --pillar-root=/golden-pillar-tree --file-root=/golden-state-tree state.apply provision | ||
rm -rf salt | ||
rm -rf salt-3007.1-onedir-linux-$ARCH.tar.xz | ||
rm -rf golden-pillar-tree | ||
rm -rf golden-state-tree | ||
EOF | ||
|
||
CMD ["/bin/bash"] |
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,8 +1,27 @@ | ||
FROM debian:12 | ||
|
||
COPY 01_nodoc /etc/dpkg/dpkg.cfg.d/01_nodoc | ||
COPY golden-pillar-tree golden-pillar-tree | ||
COPY golden-state-tree golden-state-tree | ||
|
||
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 | ||
RUN <<EOF | ||
echo 'tzdata tzdata/Areas select America' | debconf-set-selections | ||
echo 'tzdata tzdata/Zones/America select Phoenix' | debconf-set-selections | ||
export DEBIAN_FRONTEND="noninteractive" | ||
if [ $(uname -m) = "x86_64" ]; then | ||
export ARCH=x86_64 | ||
else | ||
export ARCH=arm64 | ||
fi | ||
apt update -y | ||
apt install -y tar wget xz-utils vim-nox apt-utils | ||
wget https://packages.broadcom.com/artifactory/saltproject-generic/onedir/3007.1/salt-3007.1-onedir-linux-$ARCH.tar.xz | ||
tar xf salt-3007.1-onedir-linux-$ARCH.tar.xz | ||
./salt/salt-call --local --pillar-root=/golden-pillar-tree --file-root=/golden-state-tree state.apply provision | ||
rm -rf salt | ||
rm -rf salt-3007.1-onedir-linux-$ARCH.tar.xz | ||
rm -rf golden-pillar-tree | ||
rm -rf golden-state-tree | ||
EOF | ||
|
||
CMD ["/bin/bash"] |
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 |
---|---|---|
@@ -1,6 +1,24 @@ | ||
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 | ||
COPY golden-pillar-tree golden-pillar-tree | ||
COPY golden-state-tree golden-state-tree | ||
|
||
RUN <<EOF | ||
if [ $(uname -m) = "x86_64" ]; then | ||
export ARCH=x86_64 | ||
else | ||
export ARCH=arm64 | ||
fi | ||
yum update -y | ||
yum install -y epel-release | ||
yum install -y curl wget tar xz patchelf | ||
wget https://packages.broadcom.com/artifactory/saltproject-generic/onedir/3007.1/salt-3007.1-onedir-linux-$ARCH.tar.xz | ||
tar xf salt-3007.1-onedir-linux-$ARCH.tar.xz | ||
./salt/salt-call --local --pillar-root=/golden-pillar-tree --file-root=/golden-state-tree state.apply provision | ||
rm -rf salt | ||
rm -rf salt-3007.1-onedir-linux-$ARCH.tar.xz | ||
rm -rf golden-pillar-tree | ||
rm -rf golden-state-tree | ||
EOF | ||
|
||
CMD ["/bin/bash"] |
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,7 +1,24 @@ | ||
FROM rockylinux:8 | ||
|
||
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 | ||
COPY golden-pillar-tree golden-pillar-tree | ||
COPY golden-state-tree golden-state-tree | ||
|
||
RUN <<EOF | ||
if [ $(uname -m) = "x86_64" ]; then | ||
export ARCH=x86_64 | ||
else | ||
export ARCH=arm64 | ||
fi | ||
yum update -y | ||
yum install -y epel-release | ||
yum install -y curl wget tar xz patchelf | ||
wget https://packages.broadcom.com/artifactory/saltproject-generic/onedir/3007.1/salt-3007.1-onedir-linux-$ARCH.tar.xz | ||
tar xf salt-3007.1-onedir-linux-$ARCH.tar.xz | ||
./salt/salt-call --local --pillar-root=/golden-pillar-tree --file-root=/golden-state-tree state.apply provision | ||
rm -rf salt | ||
rm -rf salt-3007.1-onedir-linux-$ARCH.tar.xz | ||
rm -rf golden-pillar-tree | ||
rm -rf golden-state-tree | ||
EOF | ||
|
||
CMD ["/bin/bash"] |
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,7 +1,24 @@ | ||
FROM rockylinux:9 | ||
|
||
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 epel-release rustc cargo \ | ||
curl wget \ | ||
&& yum install -y patchelf | ||
COPY golden-pillar-tree golden-pillar-tree | ||
COPY golden-state-tree golden-state-tree | ||
|
||
RUN <<EOF | ||
if [ $(uname -m) = "x86_64" ]; then | ||
export ARCH=x86_64 | ||
else | ||
export ARCH=arm64 | ||
fi | ||
yum update -y | ||
yum install -y epel-release | ||
yum install -y curl wget tar xz patchelf | ||
wget https://packages.broadcom.com/artifactory/saltproject-generic/onedir/3007.1/salt-3007.1-onedir-linux-$ARCH.tar.xz | ||
tar xf salt-3007.1-onedir-linux-$ARCH.tar.xz | ||
./salt/salt-call --local --pillar-root=/golden-pillar-tree --file-root=/golden-state-tree state.apply provision | ||
rm -rf salt | ||
rm -rf salt-3007.1-onedir-linux-$ARCH.tar.xz | ||
rm -rf golden-pillar-tree | ||
rm -rf golden-state-tree | ||
EOF | ||
|
||
CMD ["/bin/bash"] |
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 |
---|---|---|
@@ -1,10 +1,27 @@ | ||
FROM ubuntu:20.04 | ||
|
||
COPY 01_nodoc /etc/dpkg/dpkg.cfg.d/01_nodoc | ||
COPY golden-pillar-tree golden-pillar-tree | ||
COPY golden-state-tree golden-state-tree | ||
|
||
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 systemctl | ||
RUN <<EOF | ||
echo 'tzdata tzdata/Areas select America' | debconf-set-selections | ||
echo 'tzdata tzdata/Zones/America select Phoenix' | debconf-set-selections | ||
export DEBIAN_FRONTEND="noninteractive" | ||
if [ $(uname -m) = "x86_64" ]; then | ||
export ARCH=x86_64 | ||
else | ||
export ARCH=arm64 | ||
fi | ||
apt update -y | ||
apt install -y tar wget xz-utils vim-nox apt-utils | ||
wget https://packages.broadcom.com/artifactory/saltproject-generic/onedir/3007.1/salt-3007.1-onedir-linux-$ARCH.tar.xz | ||
tar xf salt-3007.1-onedir-linux-$ARCH.tar.xz | ||
./salt/salt-call --local --pillar-root=/golden-pillar-tree --file-root=/golden-state-tree state.apply provision | ||
rm -rf salt | ||
rm -rf salt-3007.1-onedir-linux-$ARCH.tar.xz | ||
rm -rf golden-pillar-tree | ||
rm -rf golden-state-tree | ||
EOF | ||
|
||
CMD ["/bin/bash"] |
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 |
---|---|---|
@@ -1,10 +1,27 @@ | ||
FROM ubuntu:24.04 | ||
|
||
COPY 01_nodoc /etc/dpkg/dpkg.cfg.d/01_nodoc | ||
COPY golden-pillar-tree golden-pillar-tree | ||
COPY golden-state-tree golden-state-tree | ||
|
||
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 systemctl | ||
RUN <<EOF | ||
echo 'tzdata tzdata/Areas select America' | debconf-set-selections | ||
echo 'tzdata tzdata/Zones/America select Phoenix' | debconf-set-selections | ||
export DEBIAN_FRONTEND="noninteractive" | ||
if [ $(uname -m) = "x86_64" ]; then | ||
export ARCH=x86_64 | ||
else | ||
export ARCH=arm64 | ||
fi | ||
apt update -y | ||
apt install -y tar wget xz-utils vim-nox apt-utils | ||
wget https://packages.broadcom.com/artifactory/saltproject-generic/onedir/3007.1/salt-3007.1-onedir-linux-$ARCH.tar.xz | ||
tar xf salt-3007.1-onedir-linux-$ARCH.tar.xz | ||
./salt/salt-call --local --pillar-root=/golden-pillar-tree --file-root=/golden-state-tree state.apply provision | ||
rm -rf salt | ||
rm -rf salt-3007.1-onedir-linux-$ARCH.tar.xz | ||
rm -rf golden-pillar-tree | ||
rm -rf golden-state-tree | ||
EOF | ||
|
||
CMD ["/bin/bash"] |