Skip to content

Commit ea31e1d

Browse files
author
Dominik Liebler
committed
migrate Sphinx build to Python3
1 parent 0076f3b commit ea31e1d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM php:7.3.0-cli
1+
FROM php:7.3.8-cli
22
WORKDIR /app
33
RUN apt-get update \
4-
&& apt-get install -y libzip-dev wget git-core python-pip \
4+
&& apt-get install -y libzip-dev wget git-core python3 python3-pip \
55
&& docker-php-ext-install zip \
6-
&& pip install Sphinx sphinx_rtd_theme
6+
&& pip3 install Sphinx sphinx_rtd_theme
77
ADD . /app
88
RUN cd /app && make cs test html
99
CMD [ "php", "-S", "0.0.0.0:80", "-t", "_build/html" ]

0 commit comments

Comments
 (0)