view Sphinx/Dockerfile @ 849:f58e423adc12

doc oe2: expand
author Alain Mazy <am@osimis.io>
date Thu, 19 May 2022 21:20:36 +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