diff --git a/.github/workflows/images.yml b/.github/workflows/images.yml index 8903a9e..5b94643 100644 --- a/.github/workflows/images.yml +++ b/.github/workflows/images.yml @@ -97,7 +97,7 @@ jobs: push: true tags: ${{ steps.quay_serve_cpu_meta.outputs.tags }} labels: ${{ steps.quay_serve_cpu_meta.outputs.labels }} - platforms: linux/amd64 + platforms: linux/amd64, linux/arm64 cache-from: type=gha cache-to: type=gha,mode=max file: Containerfile diff --git a/Containerfile b/Containerfile index 61ba2ba..ebfc4cc 100644 --- a/Containerfile +++ b/Containerfile @@ -27,6 +27,6 @@ ENV OMP_NUM_THREADS=4 COPY ./docling_serve /docling-serve/docling_serve -EXPOSE 5000 +EXPOSE 5001 -CMD ["poetry", "run", "uvicorn", "--port", "5000", "--host", "0.0.0.0", "docling_serve.app:app"] +CMD ["poetry", "run", "uvicorn", "--port", "5001", "--host", "0.0.0.0", "docling_serve.app:app"]