Run apt-get update to fix missing repositories

When running apt-get install I was receiving 404s for some repositories, running apt-get update before apt-get install resolves this.
This commit is contained in:
Bill Thornton 2014-07-24 13:52:22 -04:00
parent 20462f23b4
commit fac2073733

View File

@ -10,7 +10,8 @@ MAINTAINER Dan Callahan <dan.callahan@gmail.com>
# Base system setup # 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 \ vim locales \
&& apt-get clean && apt-get clean