mirror of
https://github.com/pi-hole/FTL.git
synced 2024-10-26 16:52:18 +02:00
a5fffed64d
Signed-off-by: DL6ER <dl6er@dl6er.de>
12 lines
242 B
Docker
12 lines
242 B
Docker
FROM debian:stretch
|
|
|
|
ARG Arch
|
|
ARG CC
|
|
ARG Packages
|
|
|
|
RUN dpkg --add-architecture $Arch && \
|
|
apt-get update && \
|
|
apt-get install -y nettle-dev:$Arch $Packages make file wget netcat-traditional sqlite3 git ca-certificates ssh
|
|
|
|
ENV CC $CC
|