view Sphinx/Dockerfile @ 1171:6cc55d050842 default tip

advanced storage
author Alain Mazy <am@orthanc.team>
date Tue, 17 Jun 2025 16:16:20 +0200 (4 days ago)
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