Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove buildx from docker command causes issues with docker 20.10.5 #417

Merged
2 commits merged into from
Oct 27, 2022
Merged
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
6 changes: 3 additions & 3 deletions docker/build_container.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ DOCKER_ARGS="${DOCKER_ARGS} --network=host"
DOCKER_ARGS="${DOCKER_ARGS} ${DOCKER_EXTRA_ARGS}"

# Export buildkit variable
export DOCKER_BUILDKIT
export DOCKER_BUILDKIT=1

echo "Building morpheus:${DOCKER_TAG}..."
echo " FROM_IMAGE : ${FROM_IMAGE}"
Expand All @@ -56,7 +56,7 @@ echo " RAPIDS_VER : ${RAPIDS_VER}"
echo " PYTHON_VER : ${PYTHON_VER}"
echo " TENSORRT_VERSION: ${TENSORRT_VERSION}"
echo ""
echo " COMMAND: docker buildx build ${DOCKER_ARGS} -f docker/Dockerfile ."
echo " COMMAND: docker build ${DOCKER_ARGS} -f docker/Dockerfile ."
echo " Note: add '--progress plain' to DOCKER_ARGS to show all container build output"

docker buildx build ${DOCKER_ARGS} -f docker/Dockerfile .
docker build ${DOCKER_ARGS} -f docker/Dockerfile .