forked from mrunal4/docker-ka-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f794765
commit 19f8460
Showing
1 changed file
with
4 additions
and
5 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,15 +1,14 @@ | ||
#name of container: docker-ka-lite | ||
#versison of container: 1.1 | ||
#versison of container: 2.1 | ||
|
||
FROM quantumobject/docker-baseimage:16.04 | ||
MAINTAINER Angel Rodriguez "[email protected]" | ||
|
||
RUN export USER=ka-lite | ||
|
||
#add repository and update the container | ||
#Installation of nesesary package/software for this containers... | ||
RUN echo "deb http://archive.ubuntu.com/ubuntu `cat /etc/container_environment/DISTRIB_CODENAME`-backports main restricted " >> /etc/apt/sources.list \ | ||
&& echo "deb http://ppa.launchpad.net/learningequality/ka-lite/ubuntu `cat /etc/container_environment/DISTRIB_CODENAME` main " >> /etc/apt/sources.list \ | ||
# Update the container | ||
# Installation of nesesary package/software for this containers... | ||
RUN echo "deb http://ppa.launchpad.net/learningequality/ka-lite/ubuntu `cat /etc/container_environment/DISTRIB_CODENAME` main " >> /etc/apt/sources.list \ | ||
&& apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 3194DD81 | ||
RUN apt-get update && apt-get install -y -q net-tools ka-lite \ | ||
&& apt-get clean \ | ||
|