forked from hanwckf/rt-n56u
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merged in bleissem/rt-n56u (pull request #56)
use xenial, added packages, run in noninteractive mode Approved-by: Anton Krosnev <[email protected]> Approved-by: Alexander Bleissem <[email protected]>
- Loading branch information
Showing
1 changed file
with
14 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,16 @@ | ||
FROM ubuntu:trusty | ||
FROM ubuntu:xenial | ||
|
||
MAINTAINER Andy Voigt <[email protected]> | ||
|
||
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 | ||
|
||
|