-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ FROM ubuntu:24.04 | |
|
||
LABEL maintainer "Rory Mccune <[email protected]>" | ||
|
||
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 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM ruby:2.7.2 | ||
FROM ruby:3.1.2 | ||
|
||
LABEL maintainer="Rory McCune <[email protected]>" | ||
|
||
|
@@ -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 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,9 @@ FROM ubuntu:24.04 | |
|
||
LABEL maintainer="[email protected]" | ||
|
||
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"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ FROM ubuntu:24.04 | |
|
||
LABEL maintainer="[email protected]" | ||
|
||
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 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ FROM ubuntu:24.04 | |
|
||
LABEL maintainer="[email protected]" | ||
|
||
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 | ||
|
||
|