view Sphinx/Dockerfile @ 308:ab0077ab5f5f

typos
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 04 Feb 2020 14:28:03 +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