Add python to Dockerfile, so Ansible can run task on it

This commit is contained in:
Qi Luo 2016-03-15 14:09:02 -07:00
parent ab870f190a
commit da218c4e4f

View File

@ -6,7 +6,8 @@ RUN apt-get clean && apt-get update
## Pre-install the fundamental packages
RUN apt-get -y install \
rsyslog
rsyslog \
python
COPY deps /deps
RUN dpkg_apt() { [ -f $1 ] && { dpkg -i $1 || apt-get -y install -f; } || return 1; }; dpkg_apt /deps/quagga_*.deb