Skip to content

Commit f27fb12

Browse files
committed
v0.11.0 with auto-archiver v1.1.0, antibot added, vk_extractor dropped
1 parent 019bfef commit f27fb12

File tree

6 files changed

+1793
-1034
lines changed

6 files changed

+1793
-1034
lines changed

.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
secrets/antibot_user_data*

app/web/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = "0.10.0"
1+
VERSION = "0.11.0"
22

33
API_DESCRIPTION = """
44
#### API for the Auto-Archiver project, a tool to archive web pages and Google Sheets.

docker/web/Dockerfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1212
RUN pip install --no-cache-dir poetry
1313

1414
COPY ../../pyproject.toml ../../poetry.lock ../../README.md ./
15-
# sed is unfortunately needed to fix a bug comming from vk-url-scraper that comes from brotli and the fact bk-ul-scraper can no longer be published to pypi
16-
RUN sed -i 's/platform_python_implementation >= \\"CPython\\"/platform_python_implementation == \\"CPython\\"/g' poetry.lock && \
17-
poetry install --with web --no-interaction --no-ansi --no-cache
15+
RUN poetry install --with web --no-interaction --no-ansi --no-cache
1816

1917
# Copy the application code and configurations
2018
COPY ../../app ./app/

docker/worker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ENV LANG=C.UTF-8 \
1616

1717
# install dependencies
1818
RUN apt update -y && \
19-
apt install -y python3-venv && \
19+
apt install -y python3-venv python3-tk python3-dev && \
2020
python3 -m venv ./poetry-venv && \
2121
./poetry-venv/bin/python -m pip install --upgrade pip && \
2222
./poetry-venv/bin/python -m pip install "poetry>=2.0.0,<3.0.0"

0 commit comments

Comments
 (0)