ArchiveBox/Dockerfile.simple

22 lines
224 B
Text
Raw Normal View History

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