view Sphinx/Dockerfile @ 649:22e3868d2eb1

Securing Orthanc with a client certificate and access it using a Web browser
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 26 Apr 2021 18:41:12 +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