Always run apt-get update inside Docker containers.

This commit is contained in:
Jeff Geerling 2015-12-29 16:46:39 -06:00 committed by liquidat
parent 8bcd140b27
commit c627b6c293
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