From 5f69ec656d24f9fe2fc8842e9b0b1d3fdb0ebf13 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Sat, 23 May 2026 15:44:03 -0700 Subject: [PATCH] Move Docker runtime lib dir --- Dockerfile | 2 +- bin/docker_entrypoint.sh | 2 +- etc/package.json | 2 +- pyproject.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3450300c..1d6bd228 100644 --- a/Dockerfile +++ b/Dockerfile @@ -80,7 +80,7 @@ ENV ARCHIVEBOX_USER="archivebox" \ # ArchiveBox Source Code + Lib + Data paths ENV CODE_DIR=/app \ DATA_DIR=/data \ - LIB_DIR=/usr/local/share/archivebox/lib \ + LIB_DIR=/opt/archivebox/lib \ PLAYWRIGHT_BROWSERS_PATH=/browsers # Bash SHELL config diff --git a/bin/docker_entrypoint.sh b/bin/docker_entrypoint.sh index 3b089570..349d4151 100755 --- a/bin/docker_entrypoint.sh +++ b/bin/docker_entrypoint.sh @@ -30,7 +30,7 @@ ulimit -c 0 >/dev/null 2>&1 || true # Load global invariants (set by Dockerfile during image build time, not intended to be customized by users at runtime) export DATA_DIR="${DATA_DIR:-/data}" export TMP_DIR="${TMP_DIR:-/tmp/archivebox}" -export LIB_DIR="${LIB_DIR:-/usr/local/share/archivebox/lib}" +export LIB_DIR="${LIB_DIR:-/opt/archivebox/lib}" export ARCHIVEBOX_USER="${ARCHIVEBOX_USER:-archivebox}" # Global default PUID and PGID if data dir is empty and no intended PUID+PGID is set manually by user diff --git a/etc/package.json b/etc/package.json index 2b17e9ea..8db01db3 100644 --- a/etc/package.json +++ b/etc/package.json @@ -1,6 +1,6 @@ { "name": "archivebox", - "version": "0.9.31rc7", + "version": "0.9.31rc8", "repository": "github:ArchiveBox/ArchiveBox", "license": "MIT", "dependencies": { diff --git a/pyproject.toml b/pyproject.toml index 56a57729..fdc5fbfe 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "archivebox" -version = "0.9.31rc7" +version = "0.9.31rc8" requires-python = ">=3.13" description = "Self-hosted internet archiving solution." authors = [{name = "Nick Sweeting", email = "pyproject.toml@archivebox.io"}]