view Sphinx/Dockerfile @ 95:065350232191

added reference to attachment ids used by the Osimis Web Viewer
author amazy
date Wed, 15 Mar 2017 10:31:26 +0100
parents a3d3ff83024d
children
line wrap: on
line source

FROM python:2.7

COPY requirements.txt /app/
WORKDIR /app
RUN pip install -r requirements.txt

COPY . /app

ENTRYPOINT make html