mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
12 lines
298 B
Docker
12 lines
298 B
Docker
FROM kalilinux/kali-linux-docker
|
|
MAINTAINER Christian Koep <christian.koep@fom-net.de>
|
|
|
|
RUN apt-get update && apt-get upgrade -y && apt-get install -y \
|
|
metasploit-framework \
|
|
--no-install-recommends \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY start.sh /start.sh
|
|
|
|
ENTRYPOINT [ "/start.sh" ]
|