搭建docker AWVS原生镜像

选择镜像,转入安装包

dockerfile:
# Use the Ubuntu 22.04 image as a base
FROM ubuntu:22.04
# Set working directory to /root
WORKDIR /root
# Copy the Acunetix archive into the image
COPY ./Acunetix-v15.7-Linux-Pwn3rzs-CyberArsenal.7z /root/
# Install dependencies and extract the Acunetix archive
RUN apt-get update && apt-get install -y \
    libxcomposite1 \
    libatk-bridge2.0-0 \
    libcairo2 \
    libnss3 \
    libxfixes3 \
    libcups2 \
    libxkbcommon0 \
    libxdamage1 \
    libpango-1.0-0 \
    libgbm1 \
    libasound2 \
    bzip2 \
    p7zip-full \
    libxrandr2 && \
    7za x Acunetix-v15.7-Linux-Pwn3rzs-CyberArsenal.7z && \