Mercurial > hg > orthanc-book
view Sphinx/Dockerfile @ 1137:f0a0f9ea346b
added default username/password in quick start for windows
author | Benoit Crickboom <bc@orthanc.team> |
---|---|
date | Thu, 30 Jan 2025 09:40:27 +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