Skip to content
This repository was archived by the owner on Jan 9, 2023. It is now read-only.

Commit cf5eaad

Browse files
committed
Upgrade sphinx and base image
1 parent 98d9c1a commit cf5eaad

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

docs/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
# Copyright Jetstack Ltd. See LICENSE for details.
2-
FROM python:3
2+
FROM python:3.6-stretch
33

44
WORKDIR /site
55

6+
# ensure python and dependencies are installed
67
RUN apt-get update && apt-get install -y python-enchant wbritish
78

9+
# install sphinx
810
COPY requirements.txt .
911
RUN pip install -r requirements.txt
1012
RUN mkdir -p venv/bin && ln -s $(which python) venv/bin/python && touch .venv

docs/requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
CommonMark==0.5.4
2-
Sphinx==1.6.3
3-
sphinx-rtd-theme==0.2.4
4-
sphinxcontrib-spelling==2.3.0
1+
recommonmark==0.4.0
2+
sphinx==1.7.5
3+
sphinx-rtd-theme==0.4.0
4+
sphinxcontrib-spelling==4.1.0
55
sphinxcontrib-versioning==2.2.1

0 commit comments

Comments
 (0)