Mercurial > hg > orthanc-book
view Sphinx/Dockerfile @ 678:17c1ff4e6ae4 Orthanc-1.9.3
Orthanc 1.9.3
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 07 May 2021 12:25:36 +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