github.com/m3db/m3@v1.5.0/docker/docs/Dockerfile (about)

     1  # Dockerfile for building docs is stored in a separate dir from the docs,
     2  # otherwise the generated site will unnecessarily contain the Dockerfile
     3  
     4  FROM python:3.5-alpine
     5  LABEL maintainer="The M3DB Authors <m3db@googlegroups.com>"
     6  
     7  WORKDIR /m3db
     8  EXPOSE 8000
     9  
    10  # mkdocs needs git-fast-import which was stripped from the default git package
    11  # by default to reduce size
    12  RUN pip install \
    13      mkdocs==0.17.3 \
    14      pymdown-extensions==6.0 \
    15      mkdocs-material==2.7.3
    16  RUN apk add --no-cache git-fast-import openssh-client
    17  ENTRYPOINT [ "/bin/ash", "-c" ]