Add `--fix-missing` to trusty's Dockerfile

When adopting dox on Zaqar and Glance, the ubuntu image required running
the update command with `--fix-missing`. I'm adding it directly to the
Dockerfile since it seems harmless, AFAICT.

Change-Id: I126ed9c4416924cce44ee3e4498e21e11157fe2a
This commit is contained in:
Flavio Percoco 2014-09-07 20:50:22 +02:00
parent 00458699fb
commit 508e2c961f
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
FROM ubuntu:trusty
MAINTAINER OpenStack <openstack-dev@lists.openstack.org>
RUN apt-get update
RUN apt-get update --fix-missing
RUN apt-get install -y build-essential wget git python
RUN wget https://bootstrap.pypa.io/get-pip.py && python get-pip.py && rm get-pip.py