view Sphinx/Dockerfile @ 882:815f70009ec2

highlight osimis/orthanc docker images since jodogne/orthanc images are currently not up-to-date
author Alain Mazy <am@osimis.io>
date Fri, 21 Oct 2022 15:19:22 +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