From c9d07f3a158eb9d16bccf94c97f3221dc77bbead Mon Sep 17 00:00:00 2001 From: benoit74 Date: Thu, 30 May 2024 07:44:13 +0000 Subject: [PATCH] Get rid of Python dependencies now that pywb is gone --- Dockerfile | 6 ------ requirements.txt | 1 - 2 files changed, 7 deletions(-) delete mode 100644 requirements.txt diff --git a/Dockerfile b/Dockerfile index adefbd218..425172884 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,17 +20,11 @@ ENV PROXY_HOST=localhost \ WORKDIR /app -ADD requirements.txt /app/ -RUN pip install -U setuptools; pip install -r requirements.txt - ADD package.json /app/ # to allow forcing rebuilds from this stage ARG REBUILD -# Prefetch tldextract so pywb is able to boot in environments with limited internet access -RUN tldextract --update - # Download and format ad host blocklist as JSON RUN mkdir -p /tmp/ads && cd /tmp/ads && \ curl -vs -o ad-hosts.txt https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts && \ diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 0ca0c5230..000000000 --- a/requirements.txt +++ /dev/null @@ -1 +0,0 @@ -wacz>=0.5.0