view Sphinx/Dockerfile @ 897:d56a26f2d286

merge
author Alain Mazy <am@osimis.io>
date Thu, 24 Nov 2022 08:17:14 +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