-
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
6 changed files
with
170 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
FROM amazonlinux:2 | ||
|
||
COPY golden-pillar-tree golden-pillar-tree | ||
COPY golden-state-tree golden-state-tree | ||
|
||
SHELL ["/bin/bash", "-c"] | ||
|
||
RUN <<EOF | ||
set -e | ||
|
||
if [ $(uname -m) = "x86_64" ]; then | ||
export ARCH=x86_64 | ||
else | ||
export ARCH=arm64 | ||
fi | ||
|
||
yum update -y | ||
yum install -y wget tree tar xz patchelf util-linux openssl openssl-pkcs11 | ||
|
||
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 python | ||
|
||
rm -rf salt | ||
rm -rf salt-3007.1-onedir-linux-$ARCH.tar.xz | ||
rm -rf golden-pillar-tree | ||
rm -rf golden-state-tree | ||
|
||
mv /usr/bin/tail /usr/bin/tail.real | ||
EOF | ||
|
||
COPY rescue.service /etc/systemd/system/rescue.service.d/override.conf | ||
COPY tail /usr/bin/tail | ||
COPY entrypoint.py /entrypoint.py | ||
RUN chmod +x /usr/bin/tail /entrypoint.py | ||
|
||
ENTRYPOINT [ "/entrypoint.py" ] | ||
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
FROM amazonlinux:2023 | ||
|
||
COPY golden-pillar-tree golden-pillar-tree | ||
COPY golden-state-tree golden-state-tree | ||
|
||
SHELL ["/bin/bash", "-c"] | ||
|
||
RUN <<EOF | ||
set -e | ||
|
||
if [ $(uname -m) = "x86_64" ]; then | ||
export ARCH=x86_64 | ||
else | ||
export ARCH=arm64 | ||
fi | ||
|
||
yum update -y | ||
yum install -y wget tree tar xz patchelf util-linux openssl openssl-pkcs11 | ||
|
||
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 python | ||
|
||
rm -rf salt | ||
rm -rf salt-3007.1-onedir-linux-$ARCH.tar.xz | ||
rm -rf golden-pillar-tree | ||
rm -rf golden-state-tree | ||
|
||
mv /usr/bin/tail /usr/bin/tail.real | ||
EOF | ||
|
||
COPY rescue.service /etc/systemd/system/rescue.service.d/override.conf | ||
COPY tail /usr/bin/tail | ||
COPY entrypoint.py /entrypoint.py | ||
RUN chmod +x /usr/bin/tail /entrypoint.py | ||
|
||
ENTRYPOINT [ "/entrypoint.py" ] | ||
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
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 | ||
|
||
SHELL ["/bin/bash", "-c"] | ||
|
||
RUN <<EOF | ||
set -e | ||
|
||
if [ $(uname -m) = "x86_64" ]; then | ||
export ARCH=x86_64 | ||
else | ||
export ARCH=arm64 | ||
fi | ||
|
||
echo 'tzdata tzdata/Areas select America' | debconf-set-selections | ||
echo 'tzdata tzdata/Zones/America select Phoenix' | debconf-set-selections | ||
|
||
export DEBIAN_FRONTEND="noninteractive" | ||
|
||
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 python | ||
|
||
rm -rf salt | ||
rm -rf salt-3007.1-onedir-linux-$ARCH.tar.xz | ||
rm -rf golden-pillar-tree | ||
rm -rf golden-state-tree | ||
|
||
mv /usr/bin/tail /usr/bin/tail.real | ||
EOF | ||
|
||
COPY rescue.service /etc/systemd/system/rescue.service.d/override.conf | ||
COPY tail /usr/bin/tail | ||
COPY entrypoint.py /entrypoint.py | ||
RUN chmod +x /usr/bin/tail /entrypoint.py | ||
|
||
ENTRYPOINT [ "/entrypoint.py" ] | ||
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
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 | ||
|
||
SHELL ["/bin/bash", "-c"] | ||
|
||
RUN <<EOF | ||
set -e | ||
|
||
if [ $(uname -m) = "x86_64" ]; then | ||
export ARCH=x86_64 | ||
else | ||
export ARCH=arm64 | ||
fi | ||
|
||
echo 'tzdata tzdata/Areas select America' | debconf-set-selections | ||
echo 'tzdata tzdata/Zones/America select Phoenix' | debconf-set-selections | ||
|
||
export DEBIAN_FRONTEND="noninteractive" | ||
|
||
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 python | ||
|
||
rm -rf salt | ||
rm -rf salt-3007.1-onedir-linux-$ARCH.tar.xz | ||
rm -rf golden-pillar-tree | ||
rm -rf golden-state-tree | ||
|
||
mv /usr/bin/tail /usr/bin/tail.real | ||
EOF | ||
|
||
COPY rescue.service /etc/systemd/system/rescue.service.d/override.conf | ||
COPY tail /usr/bin/tail | ||
COPY entrypoint.py /entrypoint.py | ||
RUN chmod +x /usr/bin/tail /entrypoint.py | ||
|
||
ENTRYPOINT [ "/entrypoint.py" ] | ||
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