mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-11-27 17:00:54 +01:00
Added supported plugins to Docker image (#1458)
This commit is contained in:
parent
e3e92690cb
commit
d5adbe67af
5
.dockerignore
Normal file
5
.dockerignore
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
.git
|
||||||
|
.github
|
||||||
|
docs
|
||||||
|
node_modules
|
||||||
|
src
|
@ -18,7 +18,7 @@
|
|||||||
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||||
# IN THE SOFTWARE.
|
# IN THE SOFTWARE.
|
||||||
|
|
||||||
FROM python:3.6.8-alpine3.9
|
FROM python:3.8.1-alpine3.11
|
||||||
|
|
||||||
# Set build directory
|
# Set build directory
|
||||||
WORKDIR /tmp
|
WORKDIR /tmp
|
||||||
@ -38,7 +38,10 @@ RUN \
|
|||||||
git-fast-import \
|
git-fast-import \
|
||||||
openssh \
|
openssh \
|
||||||
&& python setup.py install \
|
&& python setup.py install \
|
||||||
&& rm -rf /tmp/*
|
&& rm -rf /tmp/* \
|
||||||
|
&& pip install --no-cache-dir \
|
||||||
|
'mkdocs-minify-plugin>=0.2' \
|
||||||
|
'mkdocs-git-revision-date-localized-plugin'
|
||||||
|
|
||||||
# Set working directory
|
# Set working directory
|
||||||
WORKDIR /docs
|
WORKDIR /docs
|
||||||
|
@ -20,7 +20,6 @@
|
|||||||
|
|
||||||
# Direct dependencies
|
# Direct dependencies
|
||||||
mkdocs>=1.0
|
mkdocs>=1.0
|
||||||
mkdocs-minify-plugin>=0.2
|
|
||||||
Pygments>=2.4
|
Pygments>=2.4
|
||||||
markdown>=3.2
|
markdown>=3.2
|
||||||
pymdown-extensions>=6.3
|
pymdown-extensions>=6.3
|
||||||
|
Loading…
Reference in New Issue
Block a user