Skip to content

Commit

Permalink
Create Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Ajayos authored Jul 17, 2022
1 parent dba343f commit 0dd1a1c
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
FROM kalilinux/kali:latest
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 cmake git libjson-c-dev libwebsockets-dev
RUN apt-get install -y npm
RUN apt-get install -y cmatrix
RUN apt-get install -y rsync
RUN apt-get install -y python
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 git
RUN apt-get install -y nano
RUN apt-get install -y tigervnc-standalone-server
COPY root.sh /usr/local/bin/root.sh
COPY bash.bashrc $HOME/.bashrc
RUN apt-get install -y wget
RUN apt-get install -y curl
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

0 comments on commit 0dd1a1c

Please sign in to comment.