SeaCogs/Dockerfile
SeaswimmerTheFsh dfd627a67f
Some checks failed
Pylint / Pylint (3.11) (push) Successful in 46s
Build Documentation / Build (push) Failing after 6s
fix(docs): fixed a poetry error
2024-01-05 13:11:11 +00:00

21 lines
479 B
Docker

from python:3.11
RUN pip install --upgrade pip poetry
COPY pyproject.toml poetry.lock mkdocs.yml README.md /
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 --no-root
COPY .docs /.docs
COPY mkdocs.yml /
WORKDIR /.docs
EXPOSE 8000
CMD ["mkdocs", "serve", "--dev-addr=0.0.0.0:8000"]