view Sphinx/Dockerfile @ 417:47d772aa7b3e c-get

added Gdcm entry for osimis/orthanc docker images
author Alain Mazy <alain@mazy.be>
date Mon, 18 May 2020 16:51:36 +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