revert docker to use pip again

This commit is contained in:
Nick Sweeting
2026-03-15 22:10:04 -07:00
parent 57e11879ec
commit 6b0cfbc522

View File

@@ -345,12 +345,11 @@ RUN --mount=type=bind,source=pyproject.toml,target=/app/pyproject.toml \
COPY --chown=root:root --chmod=755 "." "$CODE_DIR/" COPY --chown=root:root --chmod=755 "." "$CODE_DIR/"
RUN --mount=type=cache,target=/root/.cache/uv,sharing=locked,id=uv-$TARGETARCH$TARGETVARIANT \ RUN --mount=type=cache,target=/root/.cache/uv,sharing=locked,id=uv-$TARGETARCH$TARGETVARIANT \
echo "[*] Installing ArchiveBox Python source code from $CODE_DIR..." \ echo "[*] Installing ArchiveBox Python source code from $CODE_DIR..." \
&& uv sync \ && pip install \
--frozen \ --no-deps \
--inexact \ "$CODE_DIR" \
--all-extras \
&& ( \ && ( \
uv tree \ pip show archivebox \
&& which archivebox \ && which archivebox \
&& echo -e '\n\n' \ && echo -e '\n\n' \
) | tee -a /VERSION.txt ) | tee -a /VERSION.txt