File tree 2 files changed +10
-6
lines changed
2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 1
- FROM debian:bullseye
1
+ FROM debian:bookworm
2
2
3
3
ENV DEBIAN_FRONTEND noninteractive
4
4
5
5
LABEL Description="This image is used to create an environment to contribute to the cakephp/docs"
6
6
7
7
RUN apt-get update && apt-get install -y \
8
+ build-essential \
8
9
latexmk \
9
10
php \
10
- python3-pip \
11
+ python3-full \
11
12
texlive-fonts-recommended \
12
13
texlive-lang-all \
13
14
texlive-latex-extra \
14
15
texlive-latex-recommended \
15
16
&& apt-get clean \
16
17
&& rm -rf /var/lib/apt/lists/*
17
18
19
+ RUN python3 -m venv /tmp/venv
20
+ ENV PATH="/tmp/venv/bin:$PATH"
21
+
18
22
COPY requirements.txt /tmp/
19
- RUN pip3 install -r /tmp/requirements.txt
23
+ RUN pip install -r /tmp/requirements.txt
20
24
21
25
WORKDIR /data
22
26
VOLUME "/data"
Original file line number Diff line number Diff line change 1
- docutils == 0.17 .1
2
- sphinx == 4.5.0
3
- sphinxcontrib-phpdomain == 0.11.0
1
+ docutils == 0.20 .1
2
+ sphinx == 7.0.1
3
+ sphinxcontrib-phpdomain == 0.11.1
4
4
cakephpsphinx >= 0.1.57 ,< 1.0
You can’t perform that action at this time.
0 commit comments