view Sphinx/Dockerfile @ 740:63f246134e5b

update mercurial fingerprints
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 21 Jul 2021 09:48:16 +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