From a6da201574c3f1d0d52761cf81bf2abfb92d2199 Mon Sep 17 00:00:00 2001 From: Sergey Besedin Date: Thu, 26 Nov 2020 21:55:40 +0400 Subject: [PATCH] Add git, use ansible <2.10 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 87e20df..abcb8c4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,14 +3,14 @@ FROM alpine:latest RUN echo "===> Adding Python runtime..." && \ - apk add --no-cache py3-pip openssl ca-certificates sshpass openssh-client && \ + apk add --no-cache py3-pip openssl ca-certificates sshpass openssh-client git && \ apk add --no-cache --virtual build-dependencies \ python3-dev libffi-dev openssl-dev build-base && \ \ pip3 install --upgrade pip && \ \ echo "===> Installing Ansible..." && \ - pip3 install ansible ansible-lint && \ + pip3 install "ansible<2.10" ansible-lint && \ \ echo "===> Removing package list..." && \ apk del build-dependencies && \