Files
FTL/docker/arm/Dockerfile
T
Mcat12 bfcaa9f412 Use armv6 soft-float for the arm build
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>
2019-01-19 13:52:43 -08:00

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