Mercurial > hg > orthanc-book
view Sphinx/Dockerfile @ 337:85524c571277
rephrased Osimis viewer usage according to VCA suggestions
author | Alain Mazy <alain@mazy.be> |
---|---|
date | Thu, 19 Mar 2020 09:45:51 +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