mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-06-27 02:30:08 +00:00

### Summary Updates the `arm64` build to use the same `Dockerfile` as `amd64`, since there are now upstream base images for `wolfi-base` for both architectures. The legacy `rockylinux-9.4` is now stashed in a subdirectory the `docker` subdirectory and is no longer built in CI, but is available is users would like to build it themselves. Additionally, this PR includes a fix to symlink `python3` to `python3.11`, which had caused a CI failure [here](https://github.com/Unstructured-IO/unstructured/actions/runs/9619486931/job/26535697755). BREAKING CHANGE: the `arm64` image no longer supports `.doc`, `.pptx`, or `.xls` because we do not yet have a `libreoffice` `apk` built for `wolfi-base`. We intend to address that as a follow on. All other filetypes work. ### Testing Successfully docker builds, tests, and smoke tests for [amd64](https://github.com/Unstructured-IO/unstructured/actions/runs/9619458140/job/26535610735?pr=3268) and [arm64](https://github.com/Unstructured-IO/unstructured/actions/runs/9619458140/job/26535610341?pr=3268) on the feature branch (with publish disabled).
22 lines
672 B
Bash
Executable File
22 lines
672 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
DOCKER_REPOSITORY="${DOCKER_REPOSITORY:-quay.io/unstructured-io/unstructured}"
|
|
PIP_VERSION="${PIP_VERSION:-23.1.2}"
|
|
DOCKER_IMAGE="${DOCKER_IMAGE:-unstructured:dev}"
|
|
|
|
DOCKER_BUILD_CMD=(docker buildx build --load -f Dockerfile
|
|
--build-arg PIP_VERSION="$PIP_VERSION"
|
|
--build-arg BUILDKIT_INLINE_CACHE=1
|
|
--progress plain
|
|
--platform linux/amd64
|
|
--cache-from "$DOCKER_REPOSITORY":latest
|
|
-t "$DOCKER_IMAGE" .)
|
|
|
|
# only build for specific platform if DOCKER_BUILD_PLATFORM is set
|
|
if [ -n "${DOCKER_BUILD_PLATFORM:-}" ]; then
|
|
DOCKER_BUILD_CMD+=("--platform=$DOCKER_BUILD_PLATFORM")
|
|
fi
|
|
|
|
DOCKER_BUILDKIT=1 "${DOCKER_BUILD_CMD[@]}"
|