| |
---|
| | |
---|
| | # Update OS and install software |
---|
| | |
---|
| | RUN apt-get -y update |
---|
| | RUN apt-get -y install apt-utils |
---|
| | RUN apt-get -y dist-upgrade |
---|
| | RUN apt-get -y upgrade |
---|
| | RUN apt-get -y install apt-utils |
---|
| | RUN apt-get -y install bzip2 curl dnsutils dos2unix emacs-nox ethtool git \ |
---|
| | htop joe less lsof netcat net-tools nfs-common \ |
---|
| | nload openssh-server psmisc python-pip rsync screen \ |
---|
| | socat sudo silversearcher-ag tree unzip vim whois \ |
---|
| | wget zip |
---|
| | |
---|
| | # Add sandboxes to hosts file |
---|
| | |
---|
| | RUN cat common/etc/dockersand.hosts >> /etc/hosts |
---|
| | |
---|
| | # Enable sshd with same keys each time |
---|
| | ADD common/keys/ /etc/ssh/ |
---|
| | RUN mkdir /var/run/sshd |
---|
| |
---|
| | |