comparison Sphinx/Dockerfile @ 92:a3d3ff83024d

attachments doc + build with docker
author amazy
date Wed, 08 Feb 2017 20:22:42 +0100
parents
children
comparison
equal deleted inserted replaced
91:025744919357 92:a3d3ff83024d
1 FROM python:2.7
2
3 COPY requirements.txt /app/
4 WORKDIR /app
5 RUN pip install -r requirements.txt
6
7 COPY . /app
8
9 ENTRYPOINT make html