# Pastebin BtGV79Dq FROM ubuntu:16.04 RUN apt-get update RUN DEBIAN_FRONTEND=noninteractive apt-get -yq dist-upgrade RUN DEBIAN_FRONTEND=noninteractive apt-get install -yq curl python3-dev python-software-properties curl apt-transport-https build-essential git RUN curl https://bootstrap.pypa.io/get-pip.py | python3 RUN pip install bindep RUN pip install tox ADD ./${OS_PROJECT:-keystone}/bindep.txt /opt/bindep.txt RUN DEBIAN_FRONTEND=noninteractive apt-get install -yq `/usr/local/bin/bindep -b --file /opt/bindep.txt | tr '\n' ' '` WORKDIR /opt/src