Skip to content

Commit 7cb9150

Browse files
committed
Upgrade to Sphinx 6
1 parent 316cfe5 commit 7cb9150

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

Diff for: Dockerfile

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,26 @@
1-
FROM debian:bullseye
1+
FROM debian:bookworm
22

33
ENV DEBIAN_FRONTEND noninteractive
44

55
LABEL Description="This image is used to create an environment to contribute to the cakephp/docs"
66

77
RUN apt-get update && apt-get install -y \
8+
build-essential \
89
latexmk \
910
php \
10-
python3-pip \
11+
python3-full \
1112
texlive-fonts-recommended \
1213
texlive-lang-all \
1314
texlive-latex-extra \
1415
texlive-latex-recommended \
1516
&& apt-get clean \
1617
&& rm -rf /var/lib/apt/lists/*
1718

19+
RUN python3 -m venv /tmp/venv
20+
ENV PATH="/tmp/venv/bin:$PATH"
21+
1822
COPY requirements.txt /tmp/
19-
RUN pip3 install -r /tmp/requirements.txt
23+
RUN pip install -r /tmp/requirements.txt
2024

2125
WORKDIR /data
2226
VOLUME "/data"

Diff for: requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
docutils==0.17.1
2-
sphinx==4.5.0
1+
docutils==0.18.1
2+
sphinx==6.2.1
33
sphinxcontrib-phpdomain==0.11.0
44
cakephpsphinx>=0.1.57,<1.0

0 commit comments

Comments
 (0)