Skip to content
This repository was archived by the owner on Dec 15, 2025. It is now read-only.

Commit a766aec

Browse files
author
pascal
committed
Missing git package for controller
1 parent 5950781 commit a766aec

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docker-images/controller/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@ RUN \
77
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 93C4A3FD7BB9C367 && \
88
apt-get update && \
99
apt-get dist-upgrade -y -o Dpkg::Options::="--force-confnew" && \
10-
apt-get install -y -o Dpkg::Options::="--force-confnew" ansible python-boto3 && \
10+
apt-get install -y -o Dpkg::Options::="--force-confnew" \
11+
ansible \
12+
python-boto3 \
13+
git && \
1114
apt-get clean && \
1215
rm -rf \
1316
/var/lib/apt/lists/* \
@@ -22,9 +25,6 @@ COPY ./provision.yml /home/ce-dev/ce-provision/provision.yml
2225
RUN \
2326
set -x && \
2427
export DEBIAN_FRONTEND=noninteractive && \
25-
echo 'deb http://ppa.launchpad.net/ansible/ansible/ubuntu trusty main' > /etc/apt/sources.list.d/ansible.list && \
26-
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 93C4A3FD7BB9C367 && \
27-
apt-get update && \
2828
su - ce-dev -c "/usr/bin/ansible-playbook /home/ce-dev/ce-provision/provision.yml" && \
2929
rm /home/ce-dev/ce-provision/provision.yml && \
3030
apt-get clean && \

0 commit comments

Comments
 (0)