Always run apt-get update inside Docker containers.

This commit is contained in:
Jeff Geerling 2015-12-29 16:46:39 -06:00
parent 1a12e57862
commit b0e6b7ed5a
2 changed files with 2 additions and 0 deletions

View file

@ -1,4 +1,5 @@
FROM ubuntu:12.04
RUN apt-get update
# Install Ansible
RUN apt-get install -y software-properties-common python-software-properties git

View file

@ -1,4 +1,5 @@
FROM ubuntu:14.04
RUN apt-get update
# Install Ansible
RUN apt-get install -y software-properties-common git