view Sphinx/Dockerfile @ 1106:ceeab11899ee

typo (bc s first commit)
author Benoit Crickboom <bc@orthanc.team>
date Fri, 30 Aug 2024 13:46:45 +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