1
0
Fork 0
mirror of synced 2024-05-18 11:23:42 +12:00
ArchiveBox/Dockerfile

82 lines
2.9 KiB
Docker
Raw Normal View History

2020-06-26 09:46:11 +12:00
# This is the Dockerfile for ArchiveBox, it includes the following major pieces:
# git, curl, wget, python3, youtube-dl, google-chrome-stable, ArchiveBox
2019-03-01 08:04:37 +13:00
# Usage:
2020-07-22 17:30:58 +12:00
# docker build . -t archivebox
# docker run -v "$PWD/data":/data archivebox init
# docker run -v "$PWD/data":/data archivebox add 'https://example.com'
2019-03-01 08:04:37 +13:00
# Documentation:
# https://github.com/pirate/ArchiveBox/wiki/Docker#docker
2020-06-26 09:46:11 +12:00
FROM python:3.8-slim-buster
2019-07-10 05:05:51 +12:00
2020-06-26 09:46:11 +12:00
LABEL name="archivebox" \
maintainer="Nick Sweeting <archivebox-git@sweeting.me>" \
description="All-in-one personal internet archiving container"
2018-10-14 15:47:30 +13:00
2020-06-26 13:30:29 +12:00
ENV TZ=UTC \
2020-06-26 09:46:11 +12:00
LANGUAGE=en_US:en \
LC_ALL=C.UTF-8 \
2020-06-26 13:30:29 +12:00
LANG=C.UTF-8 \
2020-06-26 09:46:11 +12:00
PYTHONIOENCODING=UTF-8 \
PYTHONUNBUFFERED=1 \
APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=1 \
CODE_PATH=/app \
VENV_PATH=/venv \
DATA_PATH=/data \
EXTRA_PATH=/extra
2018-10-14 15:47:30 +13:00
# First install CLI utils and base deps, then Chrome + Fons + nodejs
2020-06-26 09:46:11 +12:00
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections \
&& apt-get update -qq \
&& apt-get install -qq -y --no-install-recommends \
apt-transport-https ca-certificates apt-utils gnupg gosu gnupg2 libgconf-2-4 zlib1g-dev \
dumb-init jq git wget curl youtube-dl ffmpeg \
2020-06-26 13:30:29 +12:00
&& curl -sSL "https://dl.google.com/linux/linux_signing_key.pub" | apt-key add - \
2020-06-26 09:46:11 +12:00
&& echo "deb https://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google-chrome.list \
&& curl -sL https://deb.nodesource.com/setup_14.x | bash - \
2020-06-26 13:30:29 +12:00
&& apt-get update -qq \
2020-06-26 09:46:11 +12:00
&& apt-get install -qq -y --no-install-recommends \
google-chrome-stable \
fontconfig \
fonts-ipafont-gothic \
fonts-wqy-zenhei \
fonts-thai-tlwg \
fonts-kacst \
fonts-symbola \
fonts-noto \
fonts-freefont-ttf \
nodejs \
unzip \
&& rm -rf /var/lib/apt/lists/*
# Clone singlefile and move it to the /bin folder so archivebox can find it
WORKDIR "$EXTRA_PATH"
RUN wget -qO - https://github.com/gildas-lormeau/SingleFile/archive/master.zip > SingleFile.zip \
&& unzip -q SingleFile.zip \
&& npm install --prefix SingleFile-master/cli --production > /dev/null 2>&1 \
&& chmod +x SingleFile-master/cli/single-file
2020-06-26 13:30:29 +12:00
# Run everything from here on out as non-privileged user
RUN groupadd --system archivebox \
2020-07-10 03:35:33 +12:00
&& useradd --system --create-home --gid archivebox --groups audio,video archivebox
2020-04-23 13:13:49 +12:00
2020-06-26 09:46:11 +12:00
ADD . "$CODE_PATH"
2020-06-26 13:30:29 +12:00
WORKDIR "$CODE_PATH"
2020-07-28 16:53:50 +12:00
ENV PATH="${PATH}:$VENV_PATH/bin"
2020-06-26 13:30:29 +12:00
RUN python -m venv --clear --symlinks "$VENV_PATH" \
2020-07-22 17:30:58 +12:00
&& pip install --upgrade pip setuptools \
2020-06-26 13:30:29 +12:00
&& pip install -e .
2018-10-14 15:47:30 +13:00
2020-06-26 09:46:11 +12:00
VOLUME "$DATA_PATH"
2020-06-26 13:30:29 +12:00
WORKDIR "$DATA_PATH"
EXPOSE 8000
2020-06-26 09:46:11 +12:00
ENV CHROME_BINARY=google-chrome \
CHROME_SANDBOX=False \
SINGLEFILE_BINARY="$EXTRA_PATH/SingleFile-master/cli/single-file"
2018-10-14 15:47:30 +13:00
2020-07-22 17:30:58 +12:00
RUN env ALLOW_ROOT=True archivebox version
ENTRYPOINT ["dumb-init", "--", "/app/bin/docker_entrypoint.sh", "archivebox"]
2020-06-26 13:30:29 +12:00
CMD ["server", "0.0.0.0:8000"]