Skip to content

Commit 0245661

Browse files
authored
minor comment to trigger new container workflow (#3848)
1 parent 50ea6fe commit 0245661

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
### Fixes
1111

12+
- Base image has been updated, trigger new workflows
1213
- **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.
1314
- **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.
1415
- **Improve element-type mapping for Chinese text.** Fixes bug where Chinese text would produce large numbers of false-positive `Title` elements.

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ COPY example-docs example-docs
1212
RUN chown -R notebook-user:notebook-user /app && \
1313
apk add font-ubuntu git && \
1414
fc-cache -fv && \
15-
ln -s /usr/bin/python3.11 /usr/bin/python3
15+
if [ "$(readlink -f /usr/bin/python3)" != "/usr/bin/python3.11" ]; then \
16+
ln -sf /usr/bin/python3.11 /usr/bin/python3; \
17+
fi
1618

1719
USER notebook-user
1820

0 commit comments

Comments
 (0)