15 lines
		
	
	
		
			868 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			868 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM ubuntu:bionic
 | 
						|
 | 
						|
RUN apt update \
 | 
						|
 && apt upgrade -y \
 | 
						|
 && DEBIAN_FRONTEND=noninteractive \
 | 
						|
    apt install -y aspell-hu bash bash-completion bc bzip2 cpio curl curlftpfs dash \
 | 
						|
                   dnsutils elinks file findutils finger ftp gawk git gnupg grep gzip \
 | 
						|
                   host hostname html2text hunspell info iputils-ping irssi jq less links \
 | 
						|
                   locales locales-all locate login lsb-base lsof lynx man-db manpages \
 | 
						|
                   manpages-hu mawk mc mime-support mlocate mutt myspell-hu nano netcat \
 | 
						|
                   netcat-traditional net-tools nmap ntp ntpdate openssh-client passwd patch \
 | 
						|
                   postfix pwgen screen sed silversearcher-ag sl strace tar tcpdump telnet texinfo \
 | 
						|
                   time tmux traceroute unrar-free unzip util-linux vim w3m wget whois xmlto xz-utils \
 | 
						|
                   iproute2
 |