github.com/pachyderm/pachyderm@v1.13.4/Dockerfile.pachdoc (about)

     1  FROM python:3
     2  
     3  WORKDIR /usr/src/app/doc
     4  COPY doc/requirements.txt .
     5  
     6  RUN pip install --no-cache-dir -r requirements.txt
     7  RUN apt-get update 
     8  RUN apt-get install -y mkdocs
     9  RUN apt-get install -y npm
    10  RUN npm install netlify-cli -g
    11  
    12  COPY . /usr/src/app/
    13  
    14  RUN ./build.sh