Skip to content

Commit

Permalink
First version.
Browse files Browse the repository at this point in the history
  • Loading branch information
Frzk committed Jan 31, 2018
1 parent d7e5bd6 commit 4ae73b2
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Dockerfile
@@ -0,0 +1,20 @@
# Build Debian 9 (Stretch) image.

FROM debian:9

LABEL maintainer="François KUBLER"

RUN apt-get update && \
apt-get install -y --no-install-recommends \
build-essential \
systemd \
python-pip \
git

RUN apt-get clean

RUN pip install --upgrade setuptools && pip install wheel && pip install ansible

RUN mkdir -p /etc/ansible && echo "[local]\nlocalhost ansible_connection=local" > /etc/ansible/hosts

ENTRYPOINT ["/bin/systemd"]

0 comments on commit 4ae73b2

Please sign in to comment.