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
|
RUN pip install --upgrade pip poetry
|
||||||
COPY pyproject.toml poetry.lock /
|
COPY pyproject.toml poetry.lock /
|
||||||
|
|
||||||
RUN apt install -y /
|
RUN apt-get update && apt-get install -y \
|
||||||
libcairo2-dev /
|
libcairo2-dev \
|
||||||
libfreetype6-dev /
|
libfreetype6-dev \
|
||||||
libjpeg-dev /
|
libjpeg-dev \
|
||||||
libffi-dev /
|
libffi-dev \
|
||||||
libpng-dev /
|
libpng-dev \
|
||||||
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
|
||||||
|
|
Loading…
Reference in a new issue