install s6 overlay for the right platform

This commit is contained in:
Jakob Ketterl 2020-05-24 21:45:08 +02:00
parent d9db693aec
commit 305adc94fa
2 changed files with 32 additions and 2 deletions

View File

@ -1,7 +1,8 @@
FROM debian:buster-slim
ADD https://github.com/just-containers/s6-overlay/releases/download/v1.21.8.0/s6-overlay-amd64.tar.gz /tmp/
RUN tar xzf /tmp/s6-overlay-amd64.tar.gz -C /
ADD docker/scripts/install-s6.sh /
RUN /install-s6.sh && \
rm /install-s6.sh
ENTRYPOINT ["/init"]
ADD docker/files/js8call/js8call-hamlib.patch /

29
docker/scripts/install-s6.sh Executable file
View File

@ -0,0 +1,29 @@
#!/usr/bin/env bash
set -eux pipefail
BUILD_PACKAGES="wget ca-certificates"
apt-get update
apt-get -y install --no-install-recommends $BUILD_PACKAGES
case `uname -m` in
arm*)
PLATFORM=armhf
;;
aarch64*)
PLATFORM=aarch64
;;
x86_64*)
PLATFORM=amd64
;;
esac
pushd /tmp
wget https://github.com/just-containers/s6-overlay/releases/download/v1.21.8.0/s6-overlay-${PLATFORM}.tar.gz
tar xzf s6-overlay-${PLATFORM}.tar.gz -C /
rm s6-overlay-${PLATFORM}.tar.gz
popd
apt-get -y purge --autoremove $BUILD_PACKAGES
apt-get clean
rm -rf /var/lib/apt/lists/*