Lightweight Vulnerability Scanner for Resourced-constrained Organizations

Dockerfile 211B

12345678910
  1. FROM ubuntu:20.04
  2. RUN apt-get update && \
  3. apt-get install -y wireguard iproute2 iptables && \
  4. apt-get clean
  5. COPY entrypoint.sh /entrypoint.sh
  6. RUN chmod +x /entrypoint.sh
  7. ENTRYPOINT ["/entrypoint.sh"]