Skip to content
This repository was archived by the owner on Jan 5, 2025. It is now read-only.

Commit 5979a40

Browse files
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.
1 parent b6976c9 commit 5979a40

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

build

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,2 @@
11
#!/bin/bash
2-
MACHINE_TYPE=`uname -m`
3-
4-
if [ ${MACHINE_TYPE} == 'x86_64' ]; then
5-
docker build -t networkboot/dhcpd "$@" $(dirname $0)
6-
elif [ ${MACHINE_TYPE} == 'armv7l' ]; then
7-
docker build -t networkboot/dhcpd:arm32v7 "$@" $(dirname $0) -f Dockerfile.arm32v7
8-
else
9-
echo "Your machine type $MACHINE_TYPE is currently not supported" >&2
10-
fi
2+
docker build -t networkboot/dhcpd "$@" $(dirname $0)

0 commit comments

Comments
 (0)