We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b306cb0 + e62d818 commit fcc6560Copy full SHA for fcc6560
CHANGES.md
@@ -1,5 +1,10 @@
1
# CHANGES
2
3
+## 0.5.0
4
+
5
+- Feature: Enabled BuildKit by default
6
+- Feature: Installed docker-compose 1.25.0
7
8
## 0.4.0
9
10
- Feature: Added zip
Dockerfile
@@ -15,7 +15,6 @@ RUN echo "Install build dependencies" && \
15
apk add --no-cache \
16
bash \
17
curl \
18
- docker-compose \
19
git \
20
make \
21
nodejs \
@@ -30,7 +29,12 @@ RUN echo "Install build dependencies" && \
30
29
pip install --no-cache-dir \
31
ansible \
32
awscli \
+ docker-compose \
33
PyGithub \
34
pyyaml && \
35
echo "Cleanup" && \
36
apk del .deps
37
38
+# Enable BuildKit by default.
39
+ENV DOCKER_BUILDKIT 1
40
+ENV COMPOSE_DOCKER_CLI_BUILD 1
0 commit comments