From 1ec7f8f3002a44365faf7f3c06c2595e05496b83 Mon Sep 17 00:00:00 2001 From: Jake Poznanski Date: Fri, 23 May 2025 20:38:21 +0000 Subject: [PATCH] Point to latest docker image which gets built automaticaly now --- .github/workflows/main.yml | 1 - README.md | 6 +++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 309ba83..94df30c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -256,7 +256,6 @@ jobs: type=ref,event=tag type=semver,pattern={{version}} type=semver,pattern={{major}}.{{minor}} - type=semver,pattern={{major}} flavor: | latest=true diff --git a/README.md b/README.md index 7a4d5b0..0c8ccb4 100644 --- a/README.md +++ b/README.md @@ -207,12 +207,12 @@ python -m olmocr.pipeline s3://my_s3_bucket/pdfworkspaces/exampleworkspace --pdf Pull the Docker image. ```bash -docker pull alleninstituteforai/olmocr:0.1.68 +docker pull alleninstituteforai/olmocr:latest ``` To run the container interactively: ```bash -docker run -it --gpus all --name olmocr_container alleninstituteforai/olmocr:0.1.68 /bin/bash +docker run -it --gpus all --name olmocr_container alleninstituteforai/olmocr:latest /bin/bash ``` If you want to access your local files inside the container, use volume mounting: @@ -220,7 +220,7 @@ If you want to access your local files inside the container, use volume mounting docker run -it --gpus all \ -v /path/to/your/local/files:/local_files \ --name olmocr_container \ - alleninstituteforai/olmocr:0.1.68 /bin/bash + alleninstituteforai/olmocr:latest /bin/bash ``` All dependencies are already installed. Once you’re inside the container, you can run olmOCR commands. For example: