view Sphinx/Dockerfile @ 1088:eaf09977e3e9

ReadCommitted
author Alain Mazy <am@orthanc.team>
date Mon, 01 Jul 2024 10:23:55 +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