view Sphinx/Dockerfile @ 864:035fe50b2e00

heartbeat
author Alain Mazy <am@osimis.io>
date Thu, 30 Jun 2022 20:34:43 +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