chore(docker): include README.md in Dockerfile COPY command and remove README.md from .dockerignore

This commit is contained in:
Ivan
2026-04-19 18:17:35 -05:00
parent a3ce41148e
commit bf78e5946e
2 changed files with 1 additions and 2 deletions

View File

@@ -1,5 +1,4 @@
# Documentation
README.md
LICENSE
donate.md
screenshots/

View File

@@ -37,7 +37,7 @@ ENV PATH="/opt/venv/bin:$PATH"
# Install essential runtime tools in the venv
RUN pip install --no-cache-dir --upgrade "pip>=26.0" "setuptools" "jaraco.context>=6.1.0"
COPY pyproject.toml poetry.lock ./
COPY pyproject.toml poetry.lock README.md ./
RUN poetry config virtualenvs.create false && \
poetry check --lock && \
poetry install --no-root --only main --no-interaction --no-ansi && \