mirror of
https://github.com/pi-hole/FTL.git
synced 2024-10-26 16:52:18 +02:00
bfcaa9f412
There have been a few issues trying to support armv6 hard-float, notably nettle crashes even when not using DNSSEC. This change will also increase the amount of devices able to run FTL by supporting armv6 devices without hard-float. The performance impact is expected to be low. Signed-off-by: Mcat12 <newtoncat12@yahoo.com>
9 lines
315 B
Docker
9 lines
315 B
Docker
FROM debian:stretch
|
|
|
|
RUN dpkg --add-architecture armel && \
|
|
apt-get update && \
|
|
apt-get install -y --no-install-recommends nettle-dev:armel gcc-arm-linux-gnueabi libc6-dev-armel-cross \
|
|
make file wget netcat-traditional sqlite3 git ca-certificates ssh libcap-dev:armel
|
|
|
|
ENV CC arm-linux-gnueabi-gcc
|