Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,21 @@ RUN --mount=type=cache,target=/root/.npm,sharing=locked,id=npm-$TARGETARCH$TARGE
&& echo -e '\n\n' \
) | tee -a /VERSION.txt

######### Install Browser History Dependencies ##################
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked,id=apt-$TARGETARCH$TARGETVARIANT --mount=type=cache,target=/root/.cache/pip,sharing=locked,id=pip-$TARGETARCH$TARGETVARIANT \
echo "[+] Installing Browser History script dependencies..." \
&& apt-get update -qq \
&& apt-get install -qq -y -t bookworm-backports --no-install-recommends \
sqlite3 jq \
&& rm -rf /var/lib/apt/lists/* \
# Save version info
&& ( \
which sqlite3 && sqlite3 --version \
&& which jq && jq --version \
&& echo -e '\n\n' \
) | tee -a /VERSION.txt


######### Build Dependencies ####################################

# Install ArchiveBox Python dependencies
Expand Down