diff --git a/Dockerfile.simple b/Dockerfile.simple new file mode 100644 index 00000000..9c305c97 --- /dev/null +++ b/Dockerfile.simple @@ -0,0 +1,21 @@ +# Example: Using ArchiveBox in your own project + +FROM python:3.12-slim + +WORKDIR /app + +RUN pip install archivebox==0.8.5rc44 +RUN archivebox install + +RUN useradd -ms /bin/bash archivebox && chown -R archivebox /app + + + + + + + + + + +