add example dockerfile template

This commit is contained in:
Nick Sweeting 2024-10-11 02:40:04 -07:00
parent 6ef250ada2
commit a4d06646e7
No known key found for this signature in database

21
Dockerfile.simple Normal file
View file

@ -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