mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-07-03 23:20:35 +00:00
9 lines
211 B
Bash
9 lines
211 B
Bash
![]() |
#!/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 .
|