diff --git a/app/shared/config.py b/app/shared/config.py index 6122b1c..13eed55 100644 --- a/app/shared/config.py +++ b/app/shared/config.py @@ -1,4 +1,5 @@ VERSION = "0.9.0" + API_DESCRIPTION = """ #### API for the Auto-Archiver project, a tool to archive web pages and Google Sheets. diff --git a/pyproject.toml b/pyproject.toml index 709a695..490f6dc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,8 @@ +[tool.poetry] +package-mode = false + [project] name = "auto-archiver-api" -version = "0.9.0" description = "API wrapper for Bellingcat's Auto Archiver, supports users, groups, sheet and url archives." authors = [ { name = "Bellingcat", email = "contact-tech@bellingcat.com" }, diff --git a/web.Dockerfile b/web.Dockerfile index 9c73efc..14a751b 100644 --- a/web.Dockerfile +++ b/web.Dockerfile @@ -10,8 +10,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ && rm -rf /var/lib/apt/lists/* RUN pip install --no-cache-dir poetry -COPY pyproject.toml poetry.lock . -RUN poetry install --with web --no-interaction --no-ansi --no-root --no-cache +COPY pyproject.toml poetry.lock README.md . +RUN poetry install --with web --no-interaction --no-ansi --no-cache # Copy the application code COPY alembic.ini ./