Skip to content

Commit

Permalink
fixes for dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
raesene committed Nov 7, 2024
1 parent d25a303 commit ced0d28
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion autochrome/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions dradis/Dockerfile
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]>"

Expand All @@ -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

Expand Down
4 changes: 2 additions & 2 deletions droopescan/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

2 changes: 1 addition & 1 deletion ncat/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion nmap/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit ced0d28

Please sign in to comment.