Skip to content

Commit

Permalink
Merge branch 'hotfix/0.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
tomodian committed Sep 6, 2019
2 parents 08de2b4 + 03cc83f commit b30bd72
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGES

## 0.1.1

- Bugfix: Empty Dockerfile was mistakenly commited

## 0.1.0

- Feature: Init
32 changes: 32 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
FROM docker:18-dind

RUN echo "Install build dependencies" && \
apk update && \
apk add --no-cache --virtual .deps \
build-base \
gcc \
libc-dev \
libffi-dev \
linux-headers \
musl-dev \
openssl-dev \
python3-dev && \
echo "Install OS dependencies" && \
apk add --no-cache \
bash \
curl \
docker-compose \
make \
python3 && \
echo "Symlink python3 dependencies to python" && \
ln -s /usr/bin/python3 /usr/bin/python && \
ln -s /usr/bin/pip3 /usr/bin/pip && \
echo "Install Ansible" && \
pip install --no-cache-dir \
ansible==2.7.10 \
awscli \
pyyaml && \
echo "Cleanup" && \
apk del .deps

COPY dockerd-entrypoint.sh /

0 comments on commit b30bd72

Please sign in to comment.