Skip to content

Commit fcc6560

Browse files
committed
Merge branch 'release/0.5.0'
2 parents b306cb0 + e62d818 commit fcc6560

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

CHANGES.md

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

3+
## 0.5.0
4+
5+
- Feature: Enabled BuildKit by default
6+
- Feature: Installed docker-compose 1.25.0
7+
38
## 0.4.0
49

510
- Feature: Added zip

Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ RUN echo "Install build dependencies" && \
1515
apk add --no-cache \
1616
bash \
1717
curl \
18-
docker-compose \
1918
git \
2019
make \
2120
nodejs \
@@ -30,7 +29,12 @@ RUN echo "Install build dependencies" && \
3029
pip install --no-cache-dir \
3130
ansible \
3231
awscli \
32+
docker-compose \
3333
PyGithub \
3434
pyyaml && \
3535
echo "Cleanup" && \
3636
apk del .deps
37+
38+
# Enable BuildKit by default.
39+
ENV DOCKER_BUILDKIT 1
40+
ENV COMPOSE_DOCKER_CLI_BUILD 1

0 commit comments

Comments
 (0)