view Sphinx/Dockerfile @ 215:d7073b3e8488

Orthanc 1.5.5
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 25 Feb 2019 13:01:41 +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