|
|
|
@ -4,11 +4,12 @@ FROM ubuntu:trusty |
|
|
|
# Note this image uses mawk |
|
|
|
|
|
|
|
# Update and install required software |
|
|
|
RUN apt-get update --fix-missing |
|
|
|
RUN apt-get install -y git curl dnsutils ldnsutils wget nginx-light jq |
|
|
|
RUN apt-get install -y ftp vsftpd |
|
|
|
RUN apt-get install -y openssh-server |
|
|
|
RUN apt-get install -y locales # for idn testing |
|
|
|
RUN apt-get update --fix-missing && \ |
|
|
|
apt-get install -y \ |
|
|
|
git curl dnsutils ldnsutils wget nginx-light jq \ |
|
|
|
ftp vsftpd \ |
|
|
|
openssh-server \ |
|
|
|
locales # for idn testing |
|
|
|
|
|
|
|
# Set locale |
|
|
|
RUN locale-gen en_US.UTF-8 |
|
|
|
|