forked from Ajayos/dk-wt
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
34 lines (28 loc) · 1019 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
FROM kalilinux/kali-rolling
RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y openssh-server
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get install -y fakechroot
RUN apt-get install -y --no-install-recommends build-essential libjson-c-dev libwebsockets-dev
RUN apt-get install -y rsync
RUN apt-get install -y python3
RUN apt-get install -y cmake
RUN apt-get install -y git
RUN apt-get install -y sudo
RUN apt-get install -y fakeroot
RUN apt-get install -y neofetch
RUN apt-get install -y apt-utils
RUN apt-get install -y nano
RUN apt-get install -y ruby
RUN apt-get install -y cmatrix
RUN apt-get install -y npm
RUN apt-get install -y curl
RUN apt-get install -y wget
RUN npm install -g heroku
RUN gem install lolcat
RUN apt-get install -y tigervnc-standalone-server
COPY root.sh /usr/local/bin/root.sh
COPY bash.bashrc $HOME/.bashrc
COPY welcome.sh $HOME/.welcome.sh
ADD https://github.com/tsl0922/ttyd/releases/download/1.6.1/ttyd_linux.x86_64 /usr/local/bin/ttyd
RUN chmod +x /usr/local/bin/ttyd