view Sphinx/Dockerfile @ 1140:e3142f727541

clarified storage/index
author Alain Mazy <am@orthanc.team>
date Mon, 10 Feb 2025 09:57:26 +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