Merge pull request #33 from billt2006/patch-1

Dockerfile: Run apt-get update to fix missing repositories
This commit is contained in:
Ryan Kelly 2014-07-30 17:20:35 +10:00
commit 1e37ca9bfb

View File

@ -10,7 +10,8 @@ MAINTAINER Dan Callahan <dan.callahan@gmail.com>
# Base system setup
RUN DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \
RUN DEBIAN_FRONTEND=noninteractive apt-get update \
&& apt-get install --no-install-recommends -y \
vim locales \
&& apt-get clean