Add python to Dockerfile, so Ansible can run task on it
This commit is contained in:
parent
ab870f190a
commit
da218c4e4f
@ -6,7 +6,8 @@ RUN apt-get clean && apt-get update
|
|||||||
|
|
||||||
## Pre-install the fundamental packages
|
## Pre-install the fundamental packages
|
||||||
RUN apt-get -y install \
|
RUN apt-get -y install \
|
||||||
rsyslog
|
rsyslog \
|
||||||
|
python
|
||||||
|
|
||||||
COPY deps /deps
|
COPY deps /deps
|
||||||
RUN dpkg_apt() { [ -f $1 ] && { dpkg -i $1 || apt-get -y install -f; } || return 1; }; dpkg_apt /deps/quagga_*.deb
|
RUN dpkg_apt() { [ -f $1 ] && { dpkg -i $1 || apt-get -y install -f; } || return 1; }; dpkg_apt /deps/quagga_*.deb
|
||||||
|
Loading…
Reference in New Issue
Block a user