view Sphinx/Dockerfile @ 131:f823ad1ef269

updated list of metadata used
author amazy
date Fri, 16 Mar 2018 11:23:31 +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