view Sphinx/Dockerfile @ 293:bd1f308a5fd2

Add ChunkedTransfers warning (issue #156)
author Michel Rozpendowski <mro@osimis.io>
date Fri, 20 Dec 2019 15:36:50 +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