From 0245661deda4f05061c2465283f5e5afd45149c0 Mon Sep 17 00:00:00 2001 From: luke-kucing Date: Thu, 19 Dec 2024 20:02:32 -0500 Subject: [PATCH] minor comment to trigger new container workflow (#3848) --- CHANGELOG.md | 1 + Dockerfile | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b6e99c743..bbb31a75b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ ### Fixes +- Base image has been updated, trigger new workflows - **Upgrade ruff to latest.** Previously the ruff version was pinned to <0.5. Remove that pin and fix the handful of lint items that resulted. - **CSV with asserted XLS content-type is correctly identified as CSV.** Resolves a bug where a CSV file with an asserted content-type of `application/vnd.ms-excel` was incorrectly identified as an XLS file. - **Improve element-type mapping for Chinese text.** Fixes bug where Chinese text would produce large numbers of false-positive `Title` elements. diff --git a/Dockerfile b/Dockerfile index 1745284a2c..c6d6e906b6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,9 @@ COPY example-docs example-docs RUN chown -R notebook-user:notebook-user /app && \ apk add font-ubuntu git && \ fc-cache -fv && \ - ln -s /usr/bin/python3.11 /usr/bin/python3 + if [ "$(readlink -f /usr/bin/python3)" != "/usr/bin/python3.11" ]; then \ + ln -sf /usr/bin/python3.11 /usr/bin/python3; \ + fi USER notebook-user