fix(docs): fixed documentation building (i think)
This commit is contained in:
parent
2663ee6134
commit
5ca2de544b
1 changed files with 7 additions and 7 deletions
14
Dockerfile
14
Dockerfile
|
@ -2,13 +2,13 @@ from python:3.11
|
|||
RUN pip install --upgrade pip poetry
|
||||
COPY pyproject.toml poetry.lock /
|
||||
|
||||
RUN apt install -y /
|
||||
libcairo2-dev /
|
||||
libfreetype6-dev /
|
||||
libjpeg-dev /
|
||||
libffi-dev /
|
||||
libpng-dev /
|
||||
libz-dev /
|
||||
RUN apt-get update && apt-get install -y \
|
||||
libcairo2-dev \
|
||||
libfreetype6-dev \
|
||||
libjpeg-dev \
|
||||
libffi-dev \
|
||||
libpng-dev \
|
||||
libz-dev \
|
||||
pngquant
|
||||
RUN poetry config virtualenvs.create false
|
||||
RUN poetry install -n --with docs
|
||||
|
|
Loading…
Reference in a new issue