Files
NetAlertX/Dockerfile
Macleykun 3fca59850c now?
2022-06-18 13:34:55 +02:00

32 lines
1.4 KiB
Docker

FROM debian:buster-slim
# Todo, figure out why using a workdir instead of full paths don't work
# Todo, do we still need all these packages? I can already see sudo which isn't needed
RUN apt-get update \
&& apt-get install --no-install-recommends ca-certificates curl libwww-perl arp-scan perl apt-utils cron sudo lighttpd php php-cgi php-fpm php-sqlite3 sqlite3 dnsutils net-tools python iproute2 -y \
&& apt-get clean autoclean \
&& apt-get autoremove \
&& rm -rf /var/lib/apt/lists/* \
&& ln -s /home/pi/pialert/install/index.html /var/www/html/index.html \
&& lighttpd-enable-mod fastcgi-php
# Redirect for lighthttpd to work properly
COPY . /home/pi/pialert
# Pi.Alert | also we probably should/can delete the tar from the repo and remove this line
RUN rm -r /home/pi/pialert/tar \
&& ln -s /home/pi/pialert/front /var/www/html/pialert \
&& python /home/pi/pialert/back/pialert.py update_vendors \
&& (crontab -l 2>/dev/null; cat /home/pi/pialert/install/pialert.cron) | crontab - \
&& chmod -R +w /home/pi/pialert/db
EXPOSE 80/tcp
VOLUME /home/pi/pialert/db
# https://github.com/rtsp/docker-lighttpd/blob/main/Dockerfile
# Todo, refacto CMD so that we can run lighttpd and make it respond instant
# The above Dockerfile is doing this well, but i don't see why it isn't working for us
CMD ["/home/pi/pialert/dockerfiles/start.sh"]