Initial commit

This commit is contained in:
Christian Klein
2026-07-17 22:04:41 +02:00
commit b6fee88aeb
5 changed files with 150 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
FROM alpine:latest
RUN apk add --no-cache curl wget git openssh bash vim nano socat bind-tools tcpdump python3 jq lldpd lighttpd iperf iperf3 lftp nmap fping pv
# Set environment variables for init script
ENV HTTP_SERVER_DISABLE=false
ENV HTTP_SERVER_PORT=80
RUN mkdir -p /docker-entrypoint-initdb.d
COPY --chown=root:root --chmod=755 src/init.sh /init.sh
# Additional files
COPY --chown=root:root --chmod=644 src/index.html /var/www/localhost/htdocs/index.html
ENTRYPOINT [ "/init.sh" ]