mirror of
https://github.com/mtan93/homeassistant-addons.git
synced 2026-04-10 14:23:07 +01:00
🚀 Angry-ip-scanner: Change tp ghcr (#118)
This commit is contained in:
29
angryipscanner/Dockerfile
Normal file
29
angryipscanner/Dockerfile
Normal file
@@ -0,0 +1,29 @@
|
||||
ARG BUILD_FROM
|
||||
FROM $BUILD_FROM
|
||||
|
||||
# Set shell
|
||||
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||
|
||||
# Install Angry IP Scanner dependencies
|
||||
RUN \
|
||||
set -x \
|
||||
&& apt-get update \
|
||||
&& apt-get install -y --no-install-recommends \
|
||||
iproute2 \
|
||||
iputils-ping \
|
||||
nginx \
|
||||
novnc \
|
||||
sqlite3 \
|
||||
tigervnc-common \
|
||||
tigervnc-standalone-server \
|
||||
wget \
|
||||
wmii \
|
||||
xfonts-base \
|
||||
xfonts-scalable \
|
||||
openjdk-11-jre libswt-cairo-gtk-4-jni libswt-gtk-4-java\
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
RUN wget https://github.com/angryip/ipscan/releases/download/3.8.2/ipscan_3.8.2_all.deb && \
|
||||
dpkg -i ipscan_3.8.2_all.deb
|
||||
|
||||
COPY rootfs /
|
||||
Reference in New Issue
Block a user