view Sphinx/Dockerfile @ 1001:56da617938f0

merge
author Alain Mazy <am@osimis.io>
date Tue, 19 Dec 2023 17:54:53 +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