mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-14 00:17:08 +00:00
21 lines
224 B
Docker
21 lines
224 B
Docker
# 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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|