diff options
Diffstat (limited to 'docker')
-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/* |