view Sphinx/Dockerfile @ 1058:30c90ac3e3d6

fix link to Online 3D Viewer
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 10 Apr 2024 07:54:08 +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