annotate Sphinx/Dockerfile @ 260:f9e7036d81d0

updating DICOMweb documentation
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 27 Jun 2019 09:46:04 +0200
parents a3d3ff83024d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
92
a3d3ff83024d attachments doc + build with docker
amazy
parents:
diff changeset
1 FROM python:2.7
a3d3ff83024d attachments doc + build with docker
amazy
parents:
diff changeset
2
a3d3ff83024d attachments doc + build with docker
amazy
parents:
diff changeset
3 COPY requirements.txt /app/
a3d3ff83024d attachments doc + build with docker
amazy
parents:
diff changeset
4 WORKDIR /app
a3d3ff83024d attachments doc + build with docker
amazy
parents:
diff changeset
5 RUN pip install -r requirements.txt
a3d3ff83024d attachments doc + build with docker
amazy
parents:
diff changeset
6
a3d3ff83024d attachments doc + build with docker
amazy
parents:
diff changeset
7 COPY . /app
a3d3ff83024d attachments doc + build with docker
amazy
parents:
diff changeset
8
a3d3ff83024d attachments doc + build with docker
amazy
parents:
diff changeset
9 ENTRYPOINT make html