Skip to content

Commit 7f7d850

Browse files
authored
Enable docker build kit (#116)
Since a feature `RUN <<EOF` from the docker build kit is being used, it would be a good idea to enable it while running docker build, as the build may not work in some systems.
1 parent 066e967 commit 7f7d850

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tls/run-tls.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -xe
33

44
# Build container image for generating cert material
5-
docker build -t temporal_tls:test -f ${PWD}/tls/Dockerfile.tls .
5+
DOCKER_BUILDKIT=1 docker build -t temporal_tls:test -f ${PWD}/tls/Dockerfile.tls .
66
mkdir -p .pki
77

88
# Run container to name volume and copy out CA certificate

0 commit comments

Comments
 (0)