File tree Expand file tree Collapse file tree 4 files changed +25
-30
lines changed Expand file tree Collapse file tree 4 files changed +25
-30
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGES
2
2
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
+
3
9
## 0.1.1
4
10
5
11
- Bugfix: Empty Dockerfile was mistakenly commited
Original file line number Diff line number Diff line change @@ -16,17 +16,17 @@ RUN echo "Install build dependencies" && \
16
16
bash \
17
17
curl \
18
18
docker-compose \
19
+ git \
19
20
make \
20
21
python3 && \
21
22
echo "Symlink python3 dependencies to python" && \
22
23
ln -s /usr/bin/python3 /usr/bin/python && \
23
24
ln -s /usr/bin/pip3 /usr/bin/pip && \
24
25
echo "Install Ansible" && \
25
26
pip install --no-cache-dir \
26
- ansible==2.7.10 \
27
+ ansible \
27
28
awscli \
29
+ PyGithub \
28
30
pyyaml && \
29
31
echo "Cleanup" && \
30
32
apk del .deps
31
-
32
- COPY dockerd-entrypoint.sh /
Original file line number Diff line number Diff line change
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"
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments