dockerfile: do not perform system upgrades

This commit is contained in:
Sameer Naik 2014-03-10 22:00:16 +05:30
parent e19ff2bf32
commit 62939b22bd
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
# Changelog
**latest a.k.a HEAD**
- do not perform system upgrades (http://crosbymichael.com/dockerfile-best-practices-take-2.html)
**6.6.5**
- upgraded to gitlan-6.6.5

View File

@ -2,7 +2,7 @@ FROM ubuntu:12.04
MAINTAINER sameer@damagehead.com
RUN sed 's/main$/main universe/' -i /etc/apt/sources.list
RUN apt-get update && apt-mark hold initscripts && apt-get upgrade -y && apt-get clean # 20140305
RUN apt-get update # 20140310
# essentials
RUN apt-get install -y vim curl wget sudo net-tools pwgen && \