view Sphinx/Dockerfile @ 1022:2969cbebbc91

Added tag Orthanc-1.12.3 for changeset a3436ae3709c
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 31 Jan 2024 14:01:57 +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