Skip to content

Commit

Permalink
[CE-359] make docker fails
Browse files Browse the repository at this point in the history
make docker fails at ansible-agent creation as it was missing
libssl and libffi packages by installing libssl-dev and libffi-dev 
deb packages the issue is resolved.

Change-Id: I1d517e2d0922a650a2eb1d86f1867549aa33c7c1
Signed-off-by: Krishna Harsha Voora <krishvoor@in.ibm.com>
  • Loading branch information
krishvoor committed May 10, 2018
1 parent 4b251f0 commit c48f30a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docker/ansible-agent/Dockerfile.in
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ ARG uid=1000
ARG gid=1000

RUN apt-get update && \
apt-get install -y bash curl python-dev sshpass \
python-pip build-essential openssh-client && \
apt-get install -y bash curl python-dev sshpass \
python-pip build-essential openssh-client libffi-dev \
libssl-dev && \
pip install --upgrade pip ansible boto boto3 shade \
pyyaml openshift && \
groupadd -g ${gid} ${user} && \
Expand Down

0 comments on commit c48f30a

Please sign in to comment.