blakeblackshear.frigate/docker/install_s6_overlay.sh
Felipe Santos f4187d6b83
Reduce amount layers of the docker image (#4448)
* Reduce amount layers of the docker image

* Fix models file name
2022-11-21 19:31:39 -06:00

16 lines
462 B
Bash
Executable File

#!/bin/bash
set -euxo pipefail
s6_arch="${TARGETARCH}"
if [[ "${TARGETARCH}" == "amd64" ]]; then
s6_arch="amd64"
elif [[ "${TARGETARCH}" == "arm" ]]; then
s6_arch="armhf"
elif [[ "${TARGETARCH}" == "arm64" ]]; then
s6_arch="aarch64"
fi
wget -qO /tmp/s6-overlay-installer "https://github.com/just-containers/s6-overlay/releases/download/v2.2.0.3/s6-overlay-${s6_arch}-installer"
chmod +x /tmp/s6-overlay-installer
/tmp/s6-overlay-installer /rootfs/