diff options
author | Ben Sturmfels <ben@sturm.com.au> | 2021-03-30 15:58:56 +1100 |
---|---|---|
committer | Ben Sturmfels <ben@sturm.com.au> | 2021-03-30 15:58:56 +1100 |
commit | 87b4d3e699e9980c81643ebaea061055fcd37a0f (patch) | |
tree | f36fc5d9f7e83f27cc704544122e810ab7685ad2 /Dockerfile-debian-11-sqlite | |
parent | b1b98281b5a34ab653779f7c34300b20732127d9 (diff) | |
download | mediagoblin-87b4d3e699e9980c81643ebaea061055fcd37a0f.tar.lz mediagoblin-87b4d3e699e9980c81643ebaea061055fcd37a0f.tar.xz mediagoblin-87b4d3e699e9980c81643ebaea061055fcd37a0f.zip |
Fix ordering in Debian 11 Dockerfile.
Diffstat (limited to 'Dockerfile-debian-11-sqlite')
-rw-r--r-- | Dockerfile-debian-11-sqlite | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Dockerfile-debian-11-sqlite b/Dockerfile-debian-11-sqlite index 38788e5b..eed130b9 100644 --- a/Dockerfile-debian-11-sqlite +++ b/Dockerfile-debian-11-sqlite @@ -41,9 +41,6 @@ python3-sphinxcontrib.qthelp \ python3-sphinxcontrib.websupport \ python3-webtest -# Additional Sphinx dependencies not in Debian. -RUN ./bin/pip install sphinxcontrib-applehelp sphinxcontrib-htmlhelp sphinxcontrib-jsmath - # Install audio dependencies. RUN apt-get install -y \ gstreamer1.0-libav \ @@ -132,6 +129,9 @@ RUN ./bootstrap.sh RUN VIRTUALENV_FLAGS='--system-site-packages' ./configure RUN make +# Additional Sphinx dependencies not in Debian. +RUN ./bin/pip install sphinxcontrib-applehelp sphinxcontrib-htmlhelp sphinxcontrib-jsmath + # Install raw image library from PyPI. RUN ./bin/pip install py3exiv2 |