summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2020-07-15 12:28:52 -0600
committermo khan <mo.khan@gmail.com>2020-07-16 20:03:40 -0600
commit2bef4d83886ea13f3dc45a5bb16b997a6eae1acd (patch)
tree84fbb2bcb8b978676a0b91bc10d4fcc18dbee4e3 /bin
parente6e1644f777da7178d90c3cbf8043a410476fec3 (diff)
Install dotnet SDK
* Include the latest dotnet SDK in the /opt/asdf/installs directory. * Update CHANGELOG and bump version * Compress large directories
Diffstat (limited to 'bin')
-rwxr-xr-xbin/docker-build2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/docker-build b/bin/docker-build
index 6f111fe..abc46c1 100755
--- a/bin/docker-build
+++ b/bin/docker-build
@@ -9,7 +9,7 @@ IMAGE_NAME=${IMAGE_NAME:-$(basename "$PWD"):latest}
export DOCKER_BUILDKIT=1
if command -v docker; then
- docker build --progress=plain --network=host --cache-from "$LATEST_IMAGE" -t "$IMAGE_NAME" .
+ docker build --network=host --cache-from "$LATEST_IMAGE" -t "$IMAGE_NAME" .
else
echo "Install docker: https://docs.docker.com/engine/installation/"
exit 1