From 5979a4070fd4a8de495535084d6159bfd7bdeb14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robin=20Smidsr=C3=B8d?= Date: Wed, 20 Feb 2019 10:45:00 +0100 Subject: [PATCH] Remove need for ARM-specific build script and Dockerfile Since dumb-init is bundled in Ubuntu 18.04, there is no longer any need for a custom Dockerfile with an ARM-specific version of dumb-init. --- build | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/build b/build index e0a79da..baef8ec 100755 --- a/build +++ b/build @@ -1,10 +1,2 @@ #!/bin/bash -MACHINE_TYPE=`uname -m` - -if [ ${MACHINE_TYPE} == 'x86_64' ]; then - docker build -t networkboot/dhcpd "$@" $(dirname $0) -elif [ ${MACHINE_TYPE} == 'armv7l' ]; then - docker build -t networkboot/dhcpd:arm32v7 "$@" $(dirname $0) -f Dockerfile.arm32v7 -else - echo "Your machine type $MACHINE_TYPE is currently not supported" >&2 -fi \ No newline at end of file +docker build -t networkboot/dhcpd "$@" $(dirname $0)