mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-15 00:47:13 +00:00
22 lines
224 B
Docker
22 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
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|