Skip to content

Commit ced0d28

Browse files
committed
fixes for dockerfiles
1 parent d25a303 commit ced0d28

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

autochrome/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM ubuntu:24.04
22

33
LABEL maintainer "Rory Mccune <[email protected]>"
44

5-
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/*
5+
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/*
66

77
RUN groupadd -r chromium && useradd -r -g chromium -G audio,video chromium && mkdir /home/chromium && chown -R chromium:chromium /home/chromium
88

dradis/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:2.7.2
1+
FROM ruby:3.1.2
22

33
LABEL maintainer="Rory McCune <[email protected]>"
44

@@ -22,7 +22,7 @@ WORKDIR /dradis-ce
2222

2323
#Complains without the rake gem setup
2424
RUN gem install rake
25-
RUN gem install bundler
25+
RUN gem install bundler -v=2.3.16
2626

2727
RUN ruby bin/setup
2828

droopescan/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ FROM ubuntu:24.04
22

33
LABEL maintainer="[email protected]"
44

5-
RUN apt update && apt install -y python-pip && rm -rf /var/cache/apt/* && rm -rf /var/lib/apt/lists/*
5+
RUN apt update && apt install -y python3-pip && rm -rf /var/cache/apt/* && rm -rf /var/lib/apt/lists/*
66

7-
RUN pip install droopescan
7+
RUN pip3 install droopescan --break-system-packages
88

99
ENTRYPOINT ["droopescan"]
1010

ncat/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM ubuntu:24.04
22

33
LABEL maintainer="[email protected]"
44

5-
RUN apt update && apt install -y build-essential libssh-dev openssl wget
5+
RUN apt update && apt install -y build-essential libssh-dev openssl wget automake
66

77
RUN wget https://nmap.org/dist/nmap-7.95.tar.bz2 && tar -xjvf nmap-7.95.tar.bz2
88

nmap/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM ubuntu:24.04
22

33
LABEL maintainer="[email protected]"
44

5-
RUN apt update && apt install -y build-essential libssh-dev openssl wget
5+
RUN apt update && apt install -y build-essential libssh-dev openssl wget automake
66

77
RUN wget https://nmap.org/dist/nmap-7.95.tar.bz2 && tar -xjvf nmap-7.95.tar.bz2
88

0 commit comments

Comments
 (0)