Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Jess Frazelle <[email protected]>
  • Loading branch information
jessfraz committed May 15, 2020
1 parent 8aba446 commit 15d4cac
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions ansible/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,29 +7,20 @@
# -v ${HOME}/.ssh:/root/.ssh:ro \
# ansible all -m ping
#
FROM alpine:latest
FROM python:3-alpine
LABEL maintainer "Christian Koep <[email protected]>"

RUN builddeps=' \
python-dev \
py2-pip \
musl-dev \
openssl-dev \
libffi-dev \
gcc \
' \
&& apk --no-cache add \
ca-certificates \
python \
py-paramiko \
py-yaml \
py-jinja2 \
py-httplib2 \
$builddeps \
&& pip install --upgrade pip \
&& pip install \
ansible \
six \
&& apk del --purge $builddeps

ENTRYPOINT [ "ansible" ]

0 comments on commit 15d4cac

Please sign in to comment.