view Sphinx/Dockerfile @ 1118:981f74cb5f98

get-scu (cont)
author Alain Mazy <am@orthanc.team>
date Mon, 09 Dec 2024 18:59:40 +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