diff options
| author | Christian Poessinger <christian@poessinger.com> | 2020-01-04 14:54:38 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-04 14:54:38 +0100 |
| commit | 8b52f2042487b0bac0be51509f2e1d23029041e3 (patch) | |
| tree | 7a34340a607c4de7c7a343b3da1109d43a7af005 /docker | |
| parent | 57913db57a4172988eb02c8d75062d36cdb6aa81 (diff) | |
| parent | 1d7328e3b701b12a4613c9dc91f4688220b577b2 (diff) | |
| download | vyos-documentation-8b52f2042487b0bac0be51509f2e1d23029041e3.tar.gz vyos-documentation-8b52f2042487b0bac0be51509f2e1d23029041e3.zip | |
Merge pull request #173 from rebortg/vyosextension
vyosextension
Diffstat (limited to 'docker')
| -rw-r--r-- | docker/Dockerfile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 80e58b1a..5e3095d7 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,6 +27,10 @@ RUN apt-get update && apt-get install -y \ curl \ dos2unix + + +RUN pip3 install Sphinx +RUN pip3 install sphinx-rtd-theme RUN pip3 install sphinx-autobuild # Cleanup |
