diff --git a/autochrome/Dockerfile b/autochrome/Dockerfile index 9b96666..98d863e 100644 --- a/autochrome/Dockerfile +++ b/autochrome/Dockerfile @@ -2,7 +2,7 @@ FROM ubuntu:24.04 LABEL maintainer "Rory Mccune " -RUN apt update && apt install -y ruby ruby-json git libx11-xcb1 libxcursor1 libxcomposite1 libxdamage1 libxi6 libxtst6 libglib2.0-0 libnss3 libcups2 libfontconfig1 libxss1 libxrandr2 libgconf-2-4 libasound2 libpangocairo-1.0-0 libatk1.0-0 libatk-bridge2.0-0 libgtk-3-0 && rm -rf /var/cache/apt/* && rm -rf /var/lib/apt/lists/* +RUN apt update && apt install -y ruby ruby-json git libx11-xcb1 libxcursor1 libxcomposite1 libxdamage1 libxi6 libxtst6 libglib2.0-0 libnss3 libcups2 libfontconfig1 libxss1 libxrandr2 libasound2-dev libpangocairo-1.0-0 libatk1.0-0 libatk-bridge2.0-0 libgtk-3-0 && rm -rf /var/cache/apt/* && rm -rf /var/lib/apt/lists/* RUN groupadd -r chromium && useradd -r -g chromium -G audio,video chromium && mkdir /home/chromium && chown -R chromium:chromium /home/chromium diff --git a/dradis/Dockerfile b/dradis/Dockerfile index c45c7f7..1ae13e8 100644 --- a/dradis/Dockerfile +++ b/dradis/Dockerfile @@ -1,4 +1,4 @@ -FROM ruby:2.7.2 +FROM ruby:3.1.2 LABEL maintainer="Rory McCune " @@ -22,7 +22,7 @@ WORKDIR /dradis-ce #Complains without the rake gem setup RUN gem install rake -RUN gem install bundler +RUN gem install bundler -v=2.3.16 RUN ruby bin/setup diff --git a/droopescan/Dockerfile b/droopescan/Dockerfile index 8acbca9..dff6ad7 100644 --- a/droopescan/Dockerfile +++ b/droopescan/Dockerfile @@ -2,9 +2,9 @@ FROM ubuntu:24.04 LABEL maintainer="rorym@mccune.org.uk" -RUN apt update && apt install -y python-pip && rm -rf /var/cache/apt/* && rm -rf /var/lib/apt/lists/* +RUN apt update && apt install -y python3-pip && rm -rf /var/cache/apt/* && rm -rf /var/lib/apt/lists/* -RUN pip install droopescan +RUN pip3 install droopescan --break-system-packages ENTRYPOINT ["droopescan"] diff --git a/ncat/Dockerfile b/ncat/Dockerfile index 4ff03db..48f5249 100644 --- a/ncat/Dockerfile +++ b/ncat/Dockerfile @@ -2,7 +2,7 @@ FROM ubuntu:24.04 LABEL maintainer="rorym@mccune.org.uk" -RUN apt update && apt install -y build-essential libssh-dev openssl wget +RUN apt update && apt install -y build-essential libssh-dev openssl wget automake RUN wget https://nmap.org/dist/nmap-7.95.tar.bz2 && tar -xjvf nmap-7.95.tar.bz2 diff --git a/nmap/Dockerfile b/nmap/Dockerfile index 4e10e76..31ab7a0 100644 --- a/nmap/Dockerfile +++ b/nmap/Dockerfile @@ -2,7 +2,7 @@ FROM ubuntu:24.04 LABEL maintainer="rorym@mccune.org.uk" -RUN apt update && apt install -y build-essential libssh-dev openssl wget +RUN apt update && apt install -y build-essential libssh-dev openssl wget automake RUN wget https://nmap.org/dist/nmap-7.95.tar.bz2 && tar -xjvf nmap-7.95.tar.bz2