view Sphinx/Dockerfile @ 830:21a522ca4ce9

osimis/orthanc Docker: links to Github
author Alain Mazy <am@osimis.io>
date Fri, 25 Mar 2022 17:30:48 +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