view Sphinx/Dockerfile @ 1250:55fff53f980a default tip

merge
author Benoit Crickboom <bc@orthanc.team>
date Thu, 18 Dec 2025 10:44:28 +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