Upgrade to warc2zim 2.0.0-dev6

This commit is contained in:
benoit74 2024-05-06 09:55:38 +00:00
parent 9a7415a402
commit 1d54b20873
No known key found for this signature in database
GPG key ID: B89606434FC7B530
2 changed files with 3 additions and 3 deletions

View file

@ -32,14 +32,14 @@ COPY pyproject.toml README.md /src/
COPY src/zimit/__about__.py /src/src/zimit/__about__.py
# Install Python dependencies
RUN /app/zimit/bin/python -m pip install --no-cache-dir /src
RUN . /app/zimit/bin/activate && python -m pip install --no-cache-dir /src
# Copy code + associated artifacts
COPY src /src/src
COPY *.md /src/
# Install + cleanup
RUN /app/zimit/bin/python -m pip install --no-cache-dir /src \
RUN . /app/zimit/bin/activate && python -m pip install --no-cache-dir /src \
&& ln -s /app/zimit/bin/zimit /usr/bin/zimit \
&& chmod +x /usr/bin/zimit \
&& rm -rf /src

View file

@ -11,7 +11,7 @@ dependencies = [
"requests==2.31.0",
"inotify==0.2.10",
"tld==0.13",
"warc2zim @ git+https://github.com/openzim/warc2zim@warc2zim2-dev5",
"warc2zim @ git+https://github.com/openzim/warc2zim@warc2zim2",
]
dynamic = ["authors", "classifiers", "keywords", "license", "version", "urls"]