view Sphinx/Dockerfile @ 994:df9162e80fc8

Osimis has discontinued the sample demo server for the Osimis Web viewer
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 28 Nov 2023 07:53:33 +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