Small Dockerfile changes

- Removed the entry from sources.list
  main and universe were already in the trusty image. This resulted
  in warnings during apt-get update
- Fixed a typo in example

Change-Id: I343f4863f1a91604f81e8e1c21f565e94a79feed
This commit is contained in:
Abhishek Chanda 2014-11-20 14:47:31 -08:00
parent 0a243a87e3
commit 05ed696684
1 changed files with 1 additions and 4 deletions

View File

@ -17,7 +17,7 @@
############################################################
# Usage:
# 1060 docker build -t magnum:latest .
# docker build -t magnum:latest .
# docker run --name magnum -p 127.0.0.1:9511:9511 -d magnum:latest /bin/sh -c magnum-api --debug --host=0.0.0.0
# curl http://127.0.0.1:9511/
############################################################
@ -28,9 +28,6 @@ FROM ubuntu
# File Author / Maintainer
MAINTAINER Davanum Srinivas
# Add the application resources URL
RUN echo "deb http://archive.ubuntu.com/ubuntu/ trusty main universe" >> /etc/apt/sources.list
# Update the sources list
RUN apt-get update