-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 / |