Skip to content

Commit bf199b0

Browse files
committed
Merge branch 'release/0.2.0'
2 parents b30bd72 + 72e31e7 commit bf199b0

File tree

4 files changed

+25
-30
lines changed

4 files changed

+25
-30
lines changed

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# CHANGES
22

3+
## 0.2.0
4+
5+
- Cleanup: Removed entrypoint file
6+
- Feature: Installed git and PyGithub
7+
- Refactor: Removed ansible version to always follow the latest
8+
39
## 0.1.1
410

511
- Bugfix: Empty Dockerfile was mistakenly commited

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@ RUN echo "Install build dependencies" && \
1616
bash \
1717
curl \
1818
docker-compose \
19+
git \
1920
make \
2021
python3 && \
2122
echo "Symlink python3 dependencies to python" && \
2223
ln -s /usr/bin/python3 /usr/bin/python && \
2324
ln -s /usr/bin/pip3 /usr/bin/pip && \
2425
echo "Install Ansible" && \
2526
pip install --no-cache-dir \
26-
ansible==2.7.10 \
27+
ansible \
2728
awscli \
29+
PyGithub \
2830
pyyaml && \
2931
echo "Cleanup" && \
3032
apk del .deps
31-
32-
COPY dockerd-entrypoint.sh /

Makefile

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
.PHONY: build
2+
3+
IMAGE := codebuild-custom-image
4+
VERSION := latest
5+
6+
build:
7+
docker build -t $(IMAGE):$(VERSION) -f Dockerfile .
8+
9+
run:
10+
@echo ""
11+
@echo "-------------------------------------"
12+
@echo "Login to Docker:"
13+
@echo "docker exec -e COLUMNS=300 -e LINES=200 -it $(IMAGE) bash"
14+
@echo "-------------------------------------"
15+
@echo ""
16+
@docker run --rm --name $(IMAGE) $(IMAGE):$(VERSION) bash -c "tail -f /dev/null"

dockerd-entrypoint.sh

Lines changed: 0 additions & 27 deletions
This file was deleted.

0 commit comments

Comments
 (0)