瀏覽代碼

add docker venv

Nick Sweeting 5 年之前
父節點
當前提交
3939f9ec7d
共有 2 個文件被更改,包括 21 次插入7 次删除
  1. 1 0
      .dockerignore
  2. 20 7
      Dockerfile

+ 1 - 0
.dockerignore

@@ -3,4 +3,5 @@ __pycache__
 .DS_Store
 .DS_Store
 venv
 venv
 .venv
 .venv
+.docker-venv
 data
 data

+ 20 - 7
Dockerfile

@@ -8,12 +8,12 @@
 # Documentation:
 # Documentation:
 #     https://github.com/pirate/ArchiveBox/wiki/Docker#docker
 #     https://github.com/pirate/ArchiveBox/wiki/Docker#docker
 
 
-FROM node:11-slim
+FROM node:13-slim
 LABEL maintainer="Nick Sweeting <[email protected]>"
 LABEL maintainer="Nick Sweeting <[email protected]>"
 
 
 RUN apt-get update \
 RUN apt-get update \
     && apt-get install -yq --no-install-recommends \
     && apt-get install -yq --no-install-recommends \
-        git zlib1g-dev wget curl youtube-dl gnupg2 libgconf-2-4 python3 python3-pip \
+        jq git zlib1g-dev wget curl youtube-dl gnupg2 libgconf-2-4 python3 python3-pip \
     && rm -rf /var/lib/apt/lists/*
     && rm -rf /var/lib/apt/lists/*
 
 
 # Install latest chrome package and fonts to support major charsets (Chinese, Japanese, Arabic, Hebrew, Thai and a few others)
 # Install latest chrome package and fonts to support major charsets (Chinese, Japanese, Arabic, Hebrew, Thai and a few others)
@@ -35,7 +35,7 @@ RUN chmod +x /usr/local/bin/dumb-init
 ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true
 ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true
 
 
 # Install puppeteer so it's available in the container.
 # Install puppeteer so it's available in the container.
-RUN npm i puppeteer
+RUN npm install puppeteer
 
 
 # Add user so we don't need --no-sandbox.
 # Add user so we don't need --no-sandbox.
 RUN groupadd -r pptruser && useradd -r -g pptruser -G audio,video pptruser \
 RUN groupadd -r pptruser && useradd -r -g pptruser -G audio,video pptruser \
@@ -43,17 +43,30 @@ RUN groupadd -r pptruser && useradd -r -g pptruser -G audio,video pptruser \
     && chown -R pptruser:pptruser /home/pptruser \
     && chown -R pptruser:pptruser /home/pptruser \
     && chown -R pptruser:pptruser /node_modules
     && chown -R pptruser:pptruser /node_modules
 
 
+WORKDIR /home/pptruser/app
+
+RUN python3 -m pip install --upgrade pip setuptools && python3 -m pip install virtualenv \
+    && python3 -m virtualenv ".docker-venv"
+ENV PATH="/home/pttruser/app/.docker-venv/bin:${PATH}"
+COPY ./Pipfile.lock "/home/pttruser/app/Pipfile.lock"
+RUN jq -r \
+        '.default,.develop | to_entries[] | .key + .value.version' \
+        "/home/pttruser/app/Pipfile.lock" \
+    | /home/pttruser/app/.docker-venv/bin/python -m pip install --no-cache-dir -r /dev/stdin \
+    && rm "/home/pttruser/app/Pipfile.lock"
+
 # Install the ArchiveBox repository and pip requirements
 # Install the ArchiveBox repository and pip requirements
-RUN git clone https://github.com/pirate/ArchiveBox /home/pptruser/app \
-    && mkdir -p /data \
+# RUN git clone https://github.com/pirate/ArchiveBox /home/pptruser/app \
+ADD . /home/pptruser/app
+RUN mkdir -p /data \
     && chown -R pptruser:pptruser /data \
     && chown -R pptruser:pptruser /data \
     && ln -s /data /home/pptruser/app/archivebox/output \
     && ln -s /data /home/pptruser/app/archivebox/output \
     && ln -s /home/pptruser/app/bin/* /bin/ \
     && ln -s /home/pptruser/app/bin/* /bin/ \
     && ln -s /home/pptruser/app/bin/archivebox /bin/archive \
     && ln -s /home/pptruser/app/bin/archivebox /bin/archive \
     && chown -R pptruser:pptruser /home/pptruser/app/archivebox
     && chown -R pptruser:pptruser /home/pptruser/app/archivebox
-    # && pip3 install -r /home/pptruser/app/archivebox/requirements.txt
 
 
 VOLUME /data
 VOLUME /data
+EXPOSE 8000
 
 
 ENV LANG=C.UTF-8 \
 ENV LANG=C.UTF-8 \
     LANGUAGE=en_US:en \
     LANGUAGE=en_US:en \
@@ -68,4 +81,4 @@ USER pptruser
 WORKDIR /home/pptruser/app
 WORKDIR /home/pptruser/app
 
 
 ENTRYPOINT ["dumb-init", "--"]
 ENTRYPOINT ["dumb-init", "--"]
-CMD ["/bin/archive"]
+CMD ["/bin/archivebox"]