summaryrefslogtreecommitdiffstats
path: root/ansible/docker/Dockerfile
blob: b0172709dc73076381a8e0643806d39090a1b934 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
FROM alpine:3.8

ARG ansible_version=2.6.3
LABEL ansible_version=$ansible_version vendor=Samsung

# Install Ansible build dependencies
RUN apk --no-cache update \
&& apk --no-cache --update add --virtual build-dependencies \
  gcc \
  make \
  musl-dev \
  libffi-dev \
  openssl-dev \
  python3-dev \
&& apk add --no-cache \
  python3 \
  py3-pip \
  openssh-client \
  openssl \
  py3-openssl \
  openssh \
  sshpass \
&& pip3 install --no-cache-dir --upgrade pip \
&& pip3 install --no-cache-dir \
  ansible==$ansible_version \
  jmespath \
&& apk del build-dependencies && rm -rf /var/cache/apk/*

ENV ANSIBLE_HOST_KEY_CHECKING false
ENV ANSIBLE_RETRY_FILES_ENABLED false

WORKDIR /ansible

ENTRYPOINT ["ansible-playbook"]