2022-11-21 22:31:39 -03:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
set -euxo pipefail
|
|
|
|
|
|
2025-05-18 09:21:26 -03:00
|
|
|
s6_version="3.2.1.0"
|
2022-12-03 13:23:19 -03:00
|
|
|
|
2022-11-21 22:31:39 -03:00
|
|
|
if [[ "${TARGETARCH}" == "amd64" ]]; then
|
2022-12-03 13:23:19 -03:00
|
|
|
s6_arch="x86_64"
|
2022-11-21 22:31:39 -03:00
|
|
|
elif [[ "${TARGETARCH}" == "arm64" ]]; then
|
|
|
|
|
s6_arch="aarch64"
|
|
|
|
|
fi
|
2022-12-03 13:23:19 -03:00
|
|
|
|
|
|
|
|
mkdir -p /rootfs/
|
|
|
|
|
|
|
|
|
|
wget -qO- "https://github.com/just-containers/s6-overlay/releases/download/v${s6_version}/s6-overlay-noarch.tar.xz" |
|
|
|
|
|
tar -C /rootfs/ -Jxpf -
|
|
|
|
|
|
|
|
|
|
wget -qO- "https://github.com/just-containers/s6-overlay/releases/download/v${s6_version}/s6-overlay-${s6_arch}.tar.xz" |
|
|
|
|
|
tar -C /rootfs/ -Jxpf -
|