9
homelab/vpn-route-check/Dockerfile
Normal file
9
homelab/vpn-route-check/Dockerfile
Normal file
@@ -0,0 +1,9 @@
|
||||
FROM python:3.11-slim
|
||||
RUN apt-get update && apt-get install -y --no-install-recommends traceroute dnsutils iproute2 openssh-client && rm -rf /var/lib/apt/lists/*
|
||||
WORKDIR /app
|
||||
COPY check_routes.py domains.txt serve_no_cache.py ./
|
||||
RUN mkdir -p /data
|
||||
COPY entrypoint.sh /entrypoint.sh
|
||||
RUN chmod +x /entrypoint.sh
|
||||
EXPOSE 8765
|
||||
ENTRYPOINT ["/entrypoint.sh"]
|
||||
Reference in New Issue
Block a user