Browse Source

add example dockerfile template

Nick Sweeting 1 year ago
parent
commit
a4d06646e7
1 changed files with 21 additions and 0 deletions
  1. 21 0
      Dockerfile.simple

+ 21 - 0
Dockerfile.simple

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