mirror of
https://github.com/jokob-sk/NetAlertX.git
synced 2025-12-07 09:36:05 -08:00
Make the installation of packages as adviced (and apt-get to have a stable interface)
This commit is contained in:
10
Dockerfile
10
Dockerfile
@@ -2,14 +2,10 @@ FROM debian:buster-slim
|
|||||||
|
|
||||||
ARG dir="/home/pi/pialert"
|
ARG dir="/home/pi/pialert"
|
||||||
|
|
||||||
#Update and reduce image size
|
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get install --no-install-recommends apt-utils cron sudo lighttpd php php-cgi php-fpm php-sqlite3 sqlite3 dnsutils net-tools python iproute2 -y \
|
&& apt-get install --no-install-recommends apt-utils cron sudo lighttpd php php-cgi php-fpm php-sqlite3 sqlite3 dnsutils net-tools python iproute2 curl arp-scan -y \
|
||||||
#Install without the --no-install-recommends flag
|
&& apt-get clean autoclean \
|
||||||
&& apt-get install curl arp-scan -y \
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
#clean-up
|
|
||||||
&& apt clean autoclean \
|
|
||||||
&& apt autoremove
|
|
||||||
|
|
||||||
#add the pi user
|
#add the pi user
|
||||||
RUN useradd -ms /bin/bash pi
|
RUN useradd -ms /bin/bash pi
|
||||||
|
|||||||
Reference in New Issue
Block a user