Açıklama Yok

Dockerfile 382B

12345678910111213141516
  1. # Use the existing OpenVAS Docker image as a base
  2. FROM immauss/openvas
  3. # Update the system and install Python and pip (if needed for internal use)
  4. RUN apt-get update && apt-get install -y \
  5. python3 \
  6. python3-pip \
  7. nmap \
  8. && rm -rf /var/lib/apt/lists/*
  9. # Expose the port for GVM API
  10. EXPOSE 9390
  11. # Start OpenVAS and gvmd in foreground
  12. CMD ["/usr/local/bin/start"]