ArchiveBox/Dockerfile.simple

22 lines
224 B
Docker
Raw Permalink Normal View History

2024-10-11 09:40:04 +00:00
# Example: Using ArchiveBox in your own project
FROM python:3.12-slim
WORKDIR /app
2024-11-03 21:04:04 +00:00
RUN pip install archivebox==0.8.5rc50
2024-10-11 09:40:04 +00:00
RUN archivebox install
RUN useradd -ms /bin/bash archivebox && chown -R archivebox /app