Skip to content

Commit 0ffcd90

Browse files
committed
Lets update some dockerfiles
1 parent dab1e34 commit 0ffcd90

File tree

8 files changed

+19
-19
lines changed

8 files changed

+19
-19
lines changed

autochrome/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:18.04
1+
FROM ubuntu:24.04
22

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

beef/Dockerfile

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

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

55
RUN apt update && apt install -y nodejs ruby ruby-dev sqlite3 libsqlite3-dev build-essential libxslt-dev libxml2-dev git && rm -rf /var/cache/apt/* && rm -rf /var/lib/apt/lists/*
66

7-
RUN gem install bundler -v '1.17.3'
7+
RUN gem install bundler
88

99
RUN git clone --depth=1 https://github.com/beefproject/beef.git && rm -rf /beef/.git/
1010

droopescan/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:18.04
1+
FROM ubuntu:24.04
22

33
LABEL maintainer="[email protected]"
44

metasploit/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM ubuntu:18.04
1+
FROM ubuntu:24.04
22

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

55
#Localtime hack
6-
COPY localtime /etc/
6+
#COPY localtime /etc/
77

88
#Avoid getting prompted during builds
99
ENV DEBIAN_FRONTEND=noninteractive
@@ -44,7 +44,7 @@ RUN apt-get update && apt-get install -y \
4444
ruby-dev && \
4545
rm -rf /var/lib/apt/lists/* && rm -rf /var/cache/apt/*
4646

47-
RUN gem install bundler -v '2.1.4'
47+
RUN gem install bundler
4848

4949
#Install Metasploit
5050
RUN git clone --depth=1 https://github.com/rapid7/metasploit-framework.git && \

ncat/Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
FROM ubuntu:18.04
1+
FROM ubuntu:24.04
22

33
LABEL maintainer="[email protected]"
44

55
RUN apt update && apt install -y build-essential libssh-dev openssl wget
66

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

9-
WORKDIR /nmap-7.70
9+
WORKDIR /nmap-7.95
1010

1111
RUN ./configure && make && make install
1212

13-
FROM ubuntu:18.04
13+
FROM ubuntu:24.04
1414

1515
RUN apt update && apt install -y libssh-dev openssl && rm -rf /var/cache/apt/* && rm -rf /var/lib/apt/lists/*
1616

nikto/Dockerfile

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

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

55
RUN apt update && apt install -y git && rm -rf /var/lib/apt/lists/*
66

77
RUN git clone --depth=1 https://github.com/sullo/nikto.git && rm -rf /nikto/.git/
88

9-
FROM ubuntu:18.04
9+
FROM ubuntu:24.04
1010

1111
RUN apt update && apt install -y libnet-ssleay-perl && rm -rf /var/cache/apt/* && rm -rf /var/lib/apt/lists/*
1212

nmap/Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
FROM ubuntu:18.04
1+
FROM ubuntu:24.04
22

33
LABEL maintainer="[email protected]"
44

55
RUN apt update && apt install -y build-essential libssh-dev openssl wget
66

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

9-
WORKDIR /nmap-7.70
9+
WORKDIR /nmap-7.95
1010

1111
RUN ./configure && make && make install
1212

13-
FROM ubuntu:18.04
13+
FROM ubuntu:24.04
1414

1515
RUN apt update && apt install -y libssh-dev openssl && rm -rf /var/cache/apt/* && rm -rf /var/lib/apt/lists/*
1616

testssl.sh/Dockerfile

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

33
LABEL maintainer="[email protected]"
44

55
RUN apt update && apt install -y git && rm -rf /var/lib/apt/lists/*
66

77
RUN git clone --depth=1 https://github.com/drwetter/testssl.sh.git && rm -rf /testssl.sh/.git/
88

9-
FROM ubuntu:18.04
9+
FROM ubuntu:24.04
1010

1111
RUN apt update && apt install -y dnsutils bsdmainutils && rm -rf /var/lib/apt/lists/*
1212

0 commit comments

Comments
 (0)