diff --git a/Dockerfile b/Dockerfile index 907cd15ba..469f85b48 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,16 @@ -FROM ubuntu:trusty +FROM ubuntu:xenial MAINTAINER Andy Voigt +ENV DEBIAN_FRONTEND noninteractive -RUN apt-get update && apt-get install -y \ +RUN apt-get update && apt-get install -qy apt-utils +RUN apt-get -qy install locales +RUN locale-gen --no-purge en_US.UTF-8 +ENV LC_ALL en_US.UTF-8 + + +RUN apt-get install -qy \ git \ build-essential \ gawk \ @@ -23,7 +30,11 @@ RUN apt-get update && apt-get install -y \ mc \ libncurses5-dev \ nano \ - vim + vim \ + autopoint \ + gperf \ + python-docutils + RUN git clone https://bitbucket.org/padavan/rt-n56u.git /opt/rt-n56u