mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2025-01-03 00:30:18 +01:00
Always run apt-get update inside Docker containers.
This commit is contained in:
parent
1a12e57862
commit
b0e6b7ed5a
2 changed files with 2 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
||||||
FROM ubuntu:12.04
|
FROM ubuntu:12.04
|
||||||
|
RUN apt-get update
|
||||||
|
|
||||||
# Install Ansible
|
# Install Ansible
|
||||||
RUN apt-get install -y software-properties-common python-software-properties git
|
RUN apt-get install -y software-properties-common python-software-properties git
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
FROM ubuntu:14.04
|
FROM ubuntu:14.04
|
||||||
|
RUN apt-get update
|
||||||
|
|
||||||
# Install Ansible
|
# Install Ansible
|
||||||
RUN apt-get install -y software-properties-common git
|
RUN apt-get install -y software-properties-common git
|
||||||
|
|
Loading…
Reference in a new issue