From 6b0cfbc522264cd422562ac152d7545ce37bf01a Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Sun, 15 Mar 2026 22:10:04 -0700 Subject: [PATCH] revert docker to use pip again --- Dockerfile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 93a46bb6..5e670837 100644 --- a/Dockerfile +++ b/Dockerfile @@ -345,12 +345,11 @@ RUN --mount=type=bind,source=pyproject.toml,target=/app/pyproject.toml \ COPY --chown=root:root --chmod=755 "." "$CODE_DIR/" RUN --mount=type=cache,target=/root/.cache/uv,sharing=locked,id=uv-$TARGETARCH$TARGETVARIANT \ echo "[*] Installing ArchiveBox Python source code from $CODE_DIR..." \ - && uv sync \ - --frozen \ - --inexact \ - --all-extras \ + && pip install \ + --no-deps \ + "$CODE_DIR" \ && ( \ - uv tree \ + pip show archivebox \ && which archivebox \ && echo -e '\n\n' \ ) | tee -a /VERSION.txt