Mercurial > hg > orthanc-book
view Sphinx/Dockerfile @ 441:c2ae93c562d2
Orthanc 1.7.1
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 27 May 2020 13:26:03 +0200 |
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