diff options
| author | Robert Göhler <github@ghlr.de> | 2020-01-04 13:28:25 +0100 | 
|---|---|---|
| committer | Robert Göhler <github@ghlr.de> | 2020-01-04 13:28:25 +0100 | 
| commit | 0326ed00ae8c46b4ece17959ebbf33b0d611dc5a (patch) | |
| tree | 3e86d8ada308330153976f88bc276f6de219b316 | |
| parent | 5b3160976a84eb019b1107dbbcb17cd746eeec40 (diff) | |
| download | vyos-documentation-0326ed00ae8c46b4ece17959ebbf33b0d611dc5a.tar.gz vyos-documentation-0326ed00ae8c46b4ece17959ebbf33b0d611dc5a.zip | |
Docker: update debian and sphinx-doc version
the update of sphinx repair a dependency problem with docutil and the new vyos extension
| -rw-r--r-- | docker/Dockerfile | 9 | 
1 files changed, 5 insertions, 4 deletions
| diff --git a/docker/Dockerfile b/docker/Dockerfile index 80e58b1a..24cab463 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,7 +1,7 @@  # Must be run with --privileged flag  # Recommended to run the container with a volume mapped  # in order to easy exprort images built to "external" world -FROM debian:stretch +FROM debian:buster  LABEL authors="VyOS Maintainers <maintainers@vyos.io>"  ENV DEBIAN_FRONTEND noninteractive @@ -16,9 +16,7 @@ RUN apt-get update && apt-get install -y \      git \      mc \      make \ -    python3-sphinx \      python3-pip \ -    python-sphinx-rtd-theme \      latexmk \      texlive-latex-recommended \      texlive-fonts-recommended \ @@ -29,7 +27,10 @@ RUN apt-get update && apt-get install -y \      curl \      dos2unix -RUN pip3 install sphinx-autobuild + + +RUN pip3 install Sphinx +RUN pip3 install sphinx-rtd-theme  # Cleanup  RUN rm -rf /var/lib/apt/lists/* | 
