Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions scripts/docker-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ CACHE_DIR="${DOCKER_CACHE_DIR:-${PWD}/target/docker-cache}"
##
## The default tag is automata
##
## This can be set throught environment variable DOCKER_TAG
## This can be set through environment variable DOCKER_TAG
TAG="${DOCKER_TAG:-automata}"

## Use cache from docker registry, if local cache is not found
Expand All @@ -49,7 +49,7 @@ then
else
## No docker buildx plugin found, fallback to default docker build command
##
## Use DOCKER_BUILDKIT environment variable for backward compatiblity.
## Use DOCKER_BUILDKIT environment variable for backward compatibility.
DOCKER_BUILDKIT=1 docker build --tag "${TAG}" .
fi

Expand Down