xXLuciferXx/Nexus
0
1FROM christian773/xfce-vnc2WORKDIR /content3USER root4RUN apt-get install chromium-browser sudo -y5RUN sudo apt-get install filezilla -y6RUN sudo add-apt-repository ppa:obsproject/obs-studio -y7RUN sudo apt update -y8RUN sudo apt install ffmpeg obs-studio -y9RUN sudo apt install p7zip-full p7zip-rar -y10RUN wget https://dl.strem.io/shell-linux/v4.4.164/Stremio_v4.4.164.deb11RUN sudo apt install ./Stremio_v4.4.164.deb -y12 13# User14RUN adduser --disabled-password --gecos '' admin15RUN adduser admin sudo16RUN echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers17 18RUN sudo apt-get install qbittorrent -y19RUN sudo apt-get install vlc -y20 21RUN apt-get update -y && apt-get upgrade -y && apt-get install -y sudo && apt-get install -y python3-pip && pip3 install --upgrade pip22RUN apt-get install -y curl gnupg wget htop sudo git git-lfs software-properties-common build-essential libgl1 zip unzip23RUN sudo chmod a+w /bin && sudo chmod -R a+rwx /root && sudo chmod a+rwx /var/lib/dpkg/lock-frontend && sudo chmod a+rwx /var/lib/dpkg && \24 sudo chmod a+rwx /var/lib/dpkg/lock25RUN sudo chmod -R 777 /headless/ && sudo chmod -R 777 /var/lib/dpkg && sudo chmod -R 777 /content/26RUN sudo chmod -R 777 /var/cache/apt && sudo chmod -R 777 /var/lib/apt/lists/lock && sudo chmod -R 777 /var/lib/apt/lists/27RUN sudo find /var -type d -exec chmod 777 {} \;28RUN sudo find /var -type f -exec chmod 777 {} \;29RUN sudo find /headless -type d -exec chmod 777 {} \;30RUN sudo find /headless -type f -exec chmod 777 {} \;31 32RUN wget https://downloads.mongodb.com/compass/mongodb-compass_1.40.2_amd64.deb33RUN sudo apt install ./mongodb-compass_*_amd64.deb -y34 35#install jsql-injection36RUN sudo apt install default-jdk -y37RUN sudo apt install default-jre -y38 39RUN sudo apt-get install sqlmap -y40 41EXPOSE 690142ENTRYPOINT ["/dockerstartup/desktop_startup.sh"]