From dfd627a67fb1f50aa54051b8e6086007f54c3c95 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Fri, 5 Jan 2024 13:11:11 +0000 Subject: [PATCH] fix(docs): fixed a poetry error --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e2910b3..77f0e24 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ from python:3.11 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 \ libcairo2-dev \ @@ -11,7 +11,7 @@ RUN apt-get update && apt-get install -y \ libz-dev \ pngquant RUN poetry config virtualenvs.create false -RUN poetry install -n --with docs +RUN poetry install -n --with docs --no-root COPY .docs /.docs COPY mkdocs.yml /