fix(docs): fixed a poetry error
Some checks failed
Pylint / Pylint (3.11) (push) Successful in 46s
Build Documentation / Build (push) Failing after 6s

This commit is contained in:
Seaswimmer 2024-01-05 13:11:11 +00:00
parent 5ca2de544b
commit dfd627a67f
Signed by: cswimr
GPG key ID: D74DDDDF420E13DF

View file

@ -1,6 +1,6 @@
from python:3.11 from python:3.11
RUN pip install --upgrade pip poetry RUN pip install --upgrade pip poetry
COPY pyproject.toml poetry.lock / COPY pyproject.toml poetry.lock mkdocs.yml README.md /
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \
libcairo2-dev \ libcairo2-dev \
@ -11,7 +11,7 @@ RUN apt-get update && apt-get install -y \
libz-dev \ libz-dev \
pngquant pngquant
RUN poetry config virtualenvs.create false RUN poetry config virtualenvs.create false
RUN poetry install -n --with docs RUN poetry install -n --with docs --no-root
COPY .docs /.docs COPY .docs /.docs
COPY mkdocs.yml / COPY mkdocs.yml /