mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-06-27 02:30:08 +00:00
9 lines
211 B
Bash
Executable File
9 lines
211 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
DOCKER_BUILDKIT=1 docker buildx build --load --platform=linux/amd64 -f Dockerfile \
|
|
--build-arg PIP_VERSION="$PIP_VERSION" \
|
|
--progress plain \
|
|
-t unstructured-dev:latest .
|