view Sphinx/Dockerfile @ 679:efc39728af20

Added tag Orthanc-1.9.3 for changeset 17c1ff4e6ae4
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 07 May 2021 12:25:39 +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